-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 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
55
56
57
<!doctype html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<title>quizzical.io</title>
<meta name="description" content="get quizzed">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="32x32" href="./img/quizzical.png">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<header>
<div class="logo">
<img src="./img/quizzical.png" alt="quizzical logo">
<h1>quizzical.io</h1>
</div>
<section class="scoreBox">
<h4>Score</h4>
<h4 class="score">X/X</h4>
</section>
</header>
<section class="quiz">
<h2 class="quizTitle">Let's get quizzical</h2>
<p class="quizIntro">This text is an introduction for the quiz</p>
<p class="questionNumber">There are 2 questions in this quiz</p>
<p class="question"></p>
<form action="./404.html" id="quizForm">
<input class="submit" type="submit" value="Start">
</form>
</section>
<section class="result">
<div class="happyFace">
<img src="./img/happy.png" alt="happy face">
<p class="positionLeft">Correct</p>
</div>
<div class="hidingBox"></div>
<div class="sadFace">
<img src="./img/sad.png" alt="sad face">
<p class="positionLeft">Wrong</p>
</div>
<div class="hidingBox"></div>
</section>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.1.min.js"><\/script>')</script>
<script src="./js/store.js"></script>
<script src="./js/main.js"></script>
</body>
</html>