-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 1.95 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
<!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">
<title>Breaking Bad Quote Match Game</title>
<!--INSERT FAVICON-->
<link rel="shortcut icon" type="image/jpg" href="./assets/favicon.png">
<!--LINK TO ANIMATE.STYLE-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!--LINKS TO STYLESHEETS-->
<link rel="stylesheet" href="./css/styling.css">
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body>
<main>
<div id="welcome-box" class="animate__animated animate__pulse">
<header>Welcome to the Breaking Bad Quote-Match Game!</header>
<p>Click/tap a button below to play!</p>
<button id="easy-btn" class="start-btn">Easy (8 matches)</button>
<button id="hard-btn" class="start-btn">Hard (16 matches)</button>
</div>
<div id="in-game-header">
<header>Breaking Bad Quote-Match Game</header>
<div id="ig-header-elems">
<div id="match-tally-container">
<p>Matches:</p>
<p id="match-tally"></p>
</div>
<div id="elapsed-time-container">
<p>Time Elapsed:</p>
<p id="timer">0:00</p>
</div>
</div>
</div>
<div id="selection-result"></div>
<div id="card-area">
</div>
<div id="game-over">
<div>
<div id="ending-gif-container"></div>
<header>You got them all!</header>
<p>If you'd like to play again, click/tap the button below.</p>
<button id="play-again-btn">Play Again</button>
</div>
</div>
</main>
<script src="./js/main.js"></script>
</body>
</html>