-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Matching Game</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Match Game Extreme</h1>
</header>
<section id="game-container">
<!-- This is where we display the flip and match counters -->
<div id="ui-container">
<h3>Flips: <span id="flip-count">0</span></h3>
<h3>Matches: <span id="match-count">0</span></h3>
</div>
<!-- This is where our cards will be rendered -->
<div id="card-container">
</div>
</section>
<div class="btn-container">
<button class="reset-btn" onclick="resetGame()">Reset</button>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.1/underscore-min.js"></script>
<script src="https://bit.ly/3HbMbbF"></script>
<script src="provided.js"></script>
<script src="script.js"></script>
</body>
</html>