-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
81 lines (72 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<title>Memory Game</title>
<link rel="shortcut icon" type="image/ico" href="./img/favicon.ico" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="container">
<header class="header">
<h1>Memory Game</h1>
</header>
<!--Start modal section-->
<section class="start-game-modal">
<div id="start-modal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<h2>Welcome!</h2>
<p>Choose the game mode</p>
<div class="modal-content-options">
<button class="btn play-again-btn" id="easyGame">Easy</button>
<button class="btn play-again-btn" id="mediumGame">Medium</button>
<button class="btn play-again-btn" id="hardGame">Hard</button>
</div>
</div>
</div>
</section>
<!-- Modal section-->
<section class="win-game-modal">
<section class="score-panel">
<div class="timer-container">⏱ <span class="timer">00:00</span></div>
<ul id="star-rating" class="star-rating">
<li class="star"><i class="fa fa-star fa-lg"></i></li>
<li class="star"><i class="fa fa-star fa-lg"></i></li>
<li class="star"><i class="fa fa-star fa-lg"></i></li>
</ul>
<span>
<span class="moves-counter">0</span>
Moves
</span>
<button class="btn reset-btn">
<i class="fa fa-repeat"></i>
</button>
</section>
<div id="modal" class="modal win">
<!-- Modal content -->
<div class="modal-content" id="win-modal-content">
<div id="modal-details">
<span class="close">×</span>
<h2>Congratulations!</h2>
<p>You have won the game and found all pairs of cards.</p>
<img class="modal-img" src="img/thumb_up.jpg" alt="Vault boy giving the thumbs up from the game fall out" />
<button class="btn play-again-btn" id="play-again">
Play Again?
</button>
</div>
</div>
</div>
</section>
<ul class="deck"></ul>
<h4>
Made by<a id="maker" href="https://www.linkedin.com/in/anshika-singh-589922164/" target="_blank">
© Anshika 🌸</a>
</h4>
</div>
<script src="js/index.js"></script>
</body>
</html>