-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.71 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.71 KB
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
<!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>Memory Game</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Righteous">
</head>
<body>
<div class="presentation any_full-screen">
<div>
<h1>Memory Game</h1>
<h4>By Igor Hakcolt</h4>
</div>
<button id="presentation__button" class="presentation__button">Start Game</button>
</div>
<div id="content" class="content-container">
<header class="presentation presentation_header">
<div>
<h1>Memory Game</h1>
<h4>By Igor Hakcolt</h4>
</div>
<div id="data" class="data">
Score: <span>0</span>
Moves: <span>0</span>
Time: <span>00:00</span>
</div>
</header>
<div class="game-board-container">
<div id="game-board" class="game-board"></div>
</div>
</div>
<div id="game-finish" class="game-finish">
<h2>You won!</h2>
<p class="game-finish__data">
Score: <span>0</span>,
Moves: <span>0</span>,
Time: <span>00:00</span>
</p>
<button id="restart" class="game-finish__restart">Play Again</button>
</div>
<script src="scripts/script.js" type="module"></script>
</body>
</html>