-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (19 loc) · 845 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/glider.ico" />
<meta property="og:title" content="Svelte Game of Life">
<meta property="og:type" content="website" />
<meta property="og:description" content="Conway's Game of Life in Svelte + Typescript">
<meta property="og:image" content="https://raw.githubusercontent.com/marcuses101/svelte-of-life/main/svelte-of-life_screen.png">
<meta property="og:url" content="https://marcuses101.github.io/svelte-of-life/">
<meta name="description" content="Conway's Game of Life in Svelte + Typescript">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Svelte Game of Life</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>