-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WordWalker</title>
<link rel="icon" type="image/png" href="/favicon.png" />
<meta property="og:title" content="WordWalker" />
<meta property="og:description" content="An infinite word game where you chain words" />
<meta property="og:image" content="/meta.png" />
<meta name="description" content="An infinite word game where you chain words" />
<meta name="keywords" content="word, game, infinite, chain, words, wordwalker, warze, leonhard, tissen" />
<meta name="author" content="Leonhard Tissen" />
<meta property="og:url" content="https://wordwalker.warze.org" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
</head>
<body>
<div id="stats">
<p id="score">Score: <span id="scoreNum">0</span></p>
<p id="words">Words: <span id="wordsNum">0</span></p>
<p id="len">Current length: <span id="lenNum">5</span></p>
</div>
<div id="game"></div>
<div id="onScreenKeyboard"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>