-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (44 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Which Beyoncé?</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Which Beyoncé</h1>
</header>
<main>
<aside>
<h2 class="aside-title">Matches this round</h2>
<p class="matched-count">0</p>
<section class="completed-pairs">
</section>
<section class="top-3">
<h3>Top 3 Times</h3>
<ol>
<li></li>
<li></li>
<li></li>
</ol>
</section>
</aside>
<section class="b-cards">
<!-- innerHTML -->
</section>
</main>
<section class="win-screen">
<img src="assets/bey1.jpg">
<h2 class="congrats">Congratulations!</h2>
<p class="win-msg">All 5 matches were found in</p>
<p class="win-time"></p>
<section>
<button class="play-again-btn">Slay Again</button>
</section>
</section>
<script src="cards.js"></script>
<script src="deck.js"></script>
<script src="main.js"></script>
</body>
</html>