-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 loc) · 1.41 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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" />
<title>What's My Hogwarts House?</title>
<!--INSERT FAVICON-->
<link
rel="shortcut icon"
type="image/jpg"
href="./assets/hogwarts-crest.png"
/>
<!--LINKS TO STYLESHEETS-->
<link rel="stylesheet" href="./src/style.css" />
<!--IMPORT ANIMATIONS PACKAGE-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!--LINK TO GOOGLE FONT(S)-->
<link
href="https://fonts.googleapis.com/css2?family=Bellota&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app">
<div id="greeting">
<h1>Ever wonder which Hogwarts House you belong in?</h1>
<h2>Take the quiz to find out!</h2>
<div id="length-selector-btns-container">
<button class="length-selector-btn" id="short">
Short Version <br />(15 questions)
</button>
<button class="length-selector-btn" id="long">
Long Version<br />(30 questions)
</button>
</div>
</div>
<div id="question-area"></div>
<div id="results-area"></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>