-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (29 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
44 lines (29 loc) · 1.25 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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en-us">
<!-- head including fonts, css reset, and style links -->
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<title>JavaScript Quizz</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
</head>
<body>
<!-- header including a link towards high scores and a time indicator -->
<header class="title">
<a href="./assets/pages/scores_page.html"> <h3 class="link">View previous score</h3></a>
<h3>Time: 100</h3>
</header>
<section id="introduction-section">
<article id="introduction-article">
<h1>Coding Quiz Challenge</h1>
<p id="game-introduction-paragraph">Try to answer the following code-related questions within the time limit. Keep in mind that incorrect answers will penalize your score and time by 10 seconds!</p>
<form action="./assets/pages/javascript-quiz.html">
<button class="button-9" role="button">Start Quiz</button>
</form>
</article>
</section>
</body>
</html>