-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (38 loc) · 1.51 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
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>A Day At The Park</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300&family=Playfair+Display:wght@500&family=Work+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>A Day At The Park</h1>
<h4>A MEMORY GAME</h4>
<div class = 'overlay-text visible'>
Click to Start
</div>
<div id = 'game-over-text' class = 'overlay-text'>
GAME OVER
<span class = 'overlay-text-small'>Click to Restart</span>
</div>
<div id = 'victory-text' class = 'overlay-text'>
YOU DID IT
<span class = 'overlay-text-small'>Click to Restart</span>
</div>
<div class = "game-container" >
<div class = "game-info-container">
<div class = "game-info">
TIME <span id = "time">50</span>
</div>
<div class = "game-info">
MOVES <span id = "moves">0</span>
</div>
</div>
</div>
<button id = 'restart'><span>START AFRESH</span></button>
<script src = "script.js"></script>
</body>
<footer>
<div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</footer>
</html>