diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-24 19:23:33 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-24 19:23:33 -0600 |
| commit | 1d15cdcb2aa463ce0aa1ab176605036cc15db2be (patch) | |
| tree | 544224007471f43a52994dc41aa7adb831557a0d /turing-machine/index.html | |
| parent | 22258746502640c8b48b94f9f6dc10edfd5a7073 (diff) | |
| download | simponic.xyz-1d15cdcb2aa463ce0aa1ab176605036cc15db2be.tar.gz simponic.xyz-1d15cdcb2aa463ce0aa1ab176605036cc15db2be.zip | |
initial turing machine
Diffstat (limited to 'turing-machine/index.html')
| -rw-r--r-- | turing-machine/index.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/turing-machine/index.html b/turing-machine/index.html new file mode 100644 index 0000000..2f65aa3 --- /dev/null +++ b/turing-machine/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<head> + <title>Turing Machine Simulator</title> + <link rel="stylesheet" type="text/css" href="css/styles.css"> +</head> +<body> + <div class="container"> + <h1>Simponic's State System</h1> + <div id="tape" class="tape"></div> + </div> + <script src="js/main.js"></script> +</body> +</html> |
