-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 1.11 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
<!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="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/modern-normalize/modern-normalize.min.css" />
<link rel="stylesheet" href="./css/styles.css"/>
<title>Javascript Quiz</title>
</head>
<body>
<div class="container">
<div id="home" class="flex-column flex-center">
<h1>JavaScript Quiz</h1>
<h3 class="subheading">This is a timed quiz on JavaScript fundamentals.</h3>
<p class="intro-text">You have 90 seconds to complete this 10 question quiz. For every incorrect answer, you will recieve a 10 second deduction. Once you reach zero seconds or finish all ten questions, the quiz will automatically end. Good luck!</p>
<a href="game.html" class="btn">Play ▸</a>
<a href="highscores.html" id="highscore-btn" class="btn">High Scores</a>
</div>
</div>
</body>
</html>