-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Tester 🧮 </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="name">Test your memory</h1>
<section class="rules">
<h2>Rules</h2>
<ul>
<li> You will start by flipping over one card</li>
<li>If the next card you flip matches, a pop up alert notifies you and you get +1 to your score</li>
<li>These cards then disspear</li>
<li>If the next card you flip does not match, a pop up alert notifies you of ths and the cards flip back</li>
<li> game continues until you match all the cards on the board</li>
</ul>
</section>
<h3>Score: <span id="result"></span></h3>
<div class="grid">
</div>
<footer class="footer">
<h4>Made with love 💓 by devnrj07</h4>
</footer>
</div>
<script defer src="app.js"></script>
</body>
</html>