-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vantyse | 2048</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="nav-logo">Vantyse</div>
<div class="app-name">2048</div>
<div class="menu">
<div class="settings"><i class="bi bi-sliders"></i></div>
<div class="stats"><i class="bi bi-bar-chart-line-fill"></i></div>
</div>
</nav>
<div class="game-container">
<div>
<div class="inner-container">
<h2 class="score">Your Score : 0000</h2>
<button class="undo-btn">Undo</button>
</div>
<div id="game-board"></div>
</div>
</div>
<div class="settings-element"></div>
<div class="stats-element"></div>
<script src="script.js" type="module"></script>
</body>
</html>