-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Test your Hallloween knowledge with this quiz!">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Halloween Quiz</title>
<!--Links-->
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text:600,700|Palanquin:400,500,700|Special+Elite&display=swap" rel="stylesheet">
</head>
<body>
<main role="main">
<header role="heading">
<h1>Halloween Quiz</h1>
</header>
<section class="start-page-content js-start-page-content" role="doc-introduction">
<h2 class="quiz-description js-quiz-description" role="text">Are you a Halloween expert?<br>Test your knowledge and don't get tricked.</h2>
<img class="start-image js-start-image" src="images/haunted-sign.jpg" alt="A welcome sign in front of a door and on a spider web welcome mat that says 'Haunted Come Right In'" role="img">
<button class="start-button js-start-button" type="button" role="button">Start</button>
</section>
</main>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>