-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1.05 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
36
37
<!doctype html>
<html lang="en">
<head>
<title>2048</title>
<meta charset="UTF-8" />
<meta name="apple-mobile-web-app-title" content="2048" />
<meta name="application-name" content="2048" />
<meta name="author" content="Danial Raza" />
<meta name="category" content="Games" />
<meta name="creator" content="Danial Raza" />
<meta name="description" content="A clone of the popular 2048 game" />
<meta name="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link rel="icon" type="image/png" href="/logo.png" />
</head>
<body>
<main id="app">
<div id="scores">
<article>
<span>Score</span>
<span id="current-score">0</span>
</article>
<article>
<span>Best</span>
<span id="best-score">0</span>
</article>
</div>
<div id="board"></div>
<button id="new-game">New Game</button>
</main>
<script type="module" src="/src/index.ts"></script>
</body>
</html>