-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (38 loc) · 1.09 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2048 Game</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container hide">
<div class="heading">
<div class="wrapper">
<span>2</span>
<span>0</span>
<span>4</span>
<span>8</span>
</div>
<div class="score-container">
Score:
<span id="score">0</span>
</div>
</div>
<div class="grid"></div>
</div>
<div class="cover-screen">
<h2 id="over-text" class="hide">Game Over</h2>
<p id="result"></p>
<button id="start-button" class="glow-on-hover" type="button">Start Game</button>
</div>
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<script src="/script.js"></script>
</body>
</html>