-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 865 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
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="sstyle.css">
<script src="script.js" defer></script>
</head>
<body>
<meta charset="utf-8">
<title>2048 Game Online</title>
</head>
<body>
<div class="container">
<div class="info">
<h1>2048</h1>
<div class="score-container">
<div class="score-title">score</div>
<span id="score">0</span>
</div>
<button id="restart-button">Restart Game</button>
</div>
<span id="result">Join the numbers and get to the <b>2048</b> tile!</span>
<div class="grid">
</div>
</div>
</body>
</html>