-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.24 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
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Cellex - Cellular Automaton Explorer</title>
<meta name="description" content="Unidimensional Cellular Automaton Explorer" />
<meta name="author" content="Mathieu CAROFF" />
<meta
name="keywords"
content="cellular automaton, unidimensional, rule, evolution, exploration, simulation, visualization"
/>
<meta property="og:title" content="Cellex - Cellular Automaton Explorer" />
<meta property="og:description" content="Unidimensional Cellular Automaton Explorer" />
<!-- __OG_IMAGE__ -->
<style>
html {
background-color: black;
color: white;
}
</style>
<link rel="stylesheet" href="./src/style.css" />
<link rel="favicon" rel="shortcut icon" href="./favicon.ico" />
</head>
<body>
<div class="bodyDiv">
<h1 class="title">Cellex</h1>
<p class="subtitle">Unidimensional Cellular Automaton Explorer</p>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="appRoot"></div>
<script type="module" src="./src/cellex.ts"></script>
</div>
</body>
</html>