-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Interactive Turing Machine simulator, learn and experiment with Turing machines in a visual and intuitive way." />
<meta name="keywords" content="Turing Machine, Turing simulator, computation, algorithm, automaton, computation theory" />
<meta name="author" content="Anderson Pozzi" />
<meta property="og:title" content="Turing Machine Simulator" />
<meta property="og:description" content="Explore and simulate how Turing Machines work in a visual and interactive way." />
<meta property="og:url" content="https://turing-craft.web.app/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Turing Machine Simulator" />
<meta name="twitter:description" content="Interactive Turing Machine simulator for learning and experimentation." />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link href="https://fonts.cdnfonts.com/css/digital-numbers" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Turing Machine Simulator</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>