-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.58 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 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="style/index.css" />
<link rel="stylesheet" href="style/cards.css" />
</head>
<body>
<div class="endgame-screen hidden">
<div class="modal-overlay"></div>
<div class="modal">
<h1>Memory Game 🧠</h1>
<h2>You won!</h2>
<h3>Your score is:</h3>
<button class="start-new-game">Start new game 🔄</button>
</div>
</div>
<!-- ***MAIN*** -->
<main>
<h1 id="title">Memory Game 🧠</h1>
<div class="menu">
<div class="select-cards">
<h2>How many cards do you want to play with?</h2>
<div class="choose-cards-n-buttons-container">
<button>Noob: 10</button>
<button>Easy: 20</button>
<button>Normal: 30</button>
<button>Hard: 50</button>
</div>
</div>
<h2>
Highest score:
<div class="score highest-score">0</div>
</h2>
<section class="score-section hidden">
<h3>
<div class="score timer"></div>
</h3>
<h3>
Current score:
<div class="score current-score">0</div>
</h3>
</section>
</div>
<!-- CARD GRID -->
<div class="card-grid"></div>
</main>
<script src="index.js" type="text/javascript"></script>
</body>
</html>