-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (66 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ESP Quiz</title>
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Barlow|Days+One|Libre+Baskerville|Monoton|Orbitron&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="styles.css">
</head>
<body>
<div class="flex-container">
<!-- header logo -->
<div class="flex-center score">
<h1>SCORE: <span class="theScore">00</span></h1>
</div>
<!-- start game button-->
<div class="flex-center">
<div id="new-game">
<button id="play-button" class="active">PLAY ►</button>
</div>
</div>
</div>
<!-- <div class="flex-center msgs"><h1>Correct / Incorrect</h1></div>-->
<div class="flex-center continue-button"><button id="continue-button" class="btn active">CONTINUE ►</button></div>
<!-- random cards display area -->
<div class="flex-next">
<div class="show-selected-card active">
<img src="images/question.png" alt="Select a Card Below">
</div>
<div class="show-secret-card active ignore">
<button id="check" class="btn check-answer active">CHECK</button>
</div>
<div id="secret-card" class="secret-card">
<img src="images/ironhack-deck.png" alt="">
</div>
</div>
<div class="flex-center msgs"><h1>Correct / Incorrect</h1></div>
<!-- <div class="instructions active"><h2>CHOOSE A CARD</h2></div> -->
<!-- answer cards display area -->
<div class="flex-center ignore">
<button class="btn selection active">
<img id="circle" class="cards" src="images/circle.png">
</button>
<button class="btn selection active">
<img id="plus" class="cards" src="images/plus.png">
</button>
<button class="btn selection active">
<img id="waves" class="cards" src="images/waves.png">
</button>
<button class="btn selection active">
<img id="square" class="cards" src="images/square.png">
</button>
<button class="btn selection active">
<img id="star" class="cards" src="images/star.png">
</button>
</div>
<div class="flex-center turns-left">
<h1>Turns Remaining: <span class="turnsLeft">10</span></h1>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript" src="src/main.js"></script>
<script type="text/javascript" src="src/esp.js"></script>
</body>
</html>