-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwireframe.html
38 lines (37 loc) · 1.29 KB
/
wireframe.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 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/wireframe.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>
</body>
</html>