forked from DysfunctionalCoders/week3-Homework-Scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.45 KB
/
index.html
File metadata and controls
46 lines (42 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Fallout Memory Game</title>
<!-- TODO: Connect the given styles file to this HTML -->
</head>
<body>
<div class="container">
<header class="header">
<h1>Memory Game</h1>
<h2>FallOut Edition</h2>
</header>
<section class="score-panel">
<h3>Score Panel</h3>
<ul id="star-rating" class="star-rating">
<li class="star"><i class="fa fa-star"></i></li>
<li class="star"><i class="fa fa-star"></i></li>
<li class="star"><i class="fa fa-star"></i></li>
</ul>
<span class="moves-counter">0</span> Moves
<div class="timer-container">
<span class="timer"><i class="fa fa-hourglass-start"></i> Timer: 00:00</span>
</div>
<div class="reset">
<button class="btn reset-btn">Reset <i class="fa fa-repeat"></i></button>
</div>
</section>
<!-- Modal section-->
<table>
<tr class="deck"></tr>
</table>
</div>
<!-- Modal -->
<section class="win-game-modal">
</section>
<!-- TODO: Connect the given JS file to your HTML -->
</body>
</html>