-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.22 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.22 KB
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
<!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">
<link rel="reset css" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<title>Jules' super tough coding quiz</title>
</head>
</html>
<body>
<!-- Box that all components go in -->
<div class="container">
<div id="home" class="flex-centre flex-column">
<h1> Coding quiz</h1>
<h2> You have one minute to answer as many questions as you can </h2>
<p>
10 points for a correct answer
<br>
<br>
1 point will be deducted for every incorrect answer and
<br>
3 seconds will be taken off the timer
</p>
<!-- Play and score board buttons -->
<a class="btn" href="./questions-page.html"> Play </a>
<a class="btn" href="./scoreboard.html"> Score board</a>
</div>
</div>
</body>
</html>