-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.06 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>adrien carpentier | cyclic cellular automaton</title>
<meta name="Description" content="cyclic cellular automaton" />
<meta property="og:locale" content="en_EN" />
<meta property="og:site_name" content="cyclic cellular automaton" />
<meta
property="og:url"
content="//adriencarpentier.com/cyclic cellular automaton"
/>
<meta property="og:type" content="website" />
<meta
property="og:title"
content="adrien carpentier | cyclic cellular automaton"
/>
<meta property="og:description" content="cyclic cellular automaton" />
<meta property="og:image" content="favicons/android-chrome-512x512.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="favicons/favicon.ico" />
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<canvas id="canvas"></canvas>
<script type="module" src="/main.js"></script>
</body>
</html>