-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (111 loc) · 3.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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>Fuzzy Personality Quiz</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<!-- Header Code -->
<section
class="hero has-background-grey-darker notification has-text-danger-light has-text-centered"
>
<div class="hero-body">
<p class="title">Fuzzy Personality Quiz</p>
<p class="subtitle">
Answer each question to find out which personality type you are.
</p>
</div>
</section>
<!-- Body Code -->
<div class="container has-text-centered">
<div id="quiz" >
<!-- Quiz questions will be added here -->
</div>
<!-- Final Answer 1 (-, -) -->
<section id="logical-introvert" class="section hidden">
<div class="container">
<h1 class="title">You are a Philospher!</h1>
<div class="columns">
<div class="column has-text-centered">
<figure
class="image card notification has-background-light is-inline-block"
>
<div class="container">
<img src="" alt="Philospher" />
</div>
</figure>
</div>
</div>
</div>
</section>
<!-- Final Answer 2 (-, +) -->
<section id="logical-extrovert" class="section hidden">
<div class="container">
<h1 class="title">You are a Group Leader!</h1>
<div class="columns">
<div class="column has-text-centered">
<figure
class="image card notification has-background-light is-inline-block"
>
<div class="container">
<img src="" alt="Group Leader" />
</div>
</figure>
</div>
</div>
</div>
</section>
<!-- Final Answer 3 (+, -) -->
<section id="creative-introvert" class="section hidden">
<div class="container">
<h1 class="title">You are a Day Dreamer!</h1>
<div class="columns">
<div class="column has-text-centered">
<figure
class="image card notification has-background-light is-inline-block"
>
<div class="container">
<img src="" alt="Day Dreamer" />
</div>
</figure>
</div>
</div>
</div>
</section>
<!-- Final Answer 4 (+, +) -->
<section id="creative-extrovert" class="section hidden">
<div class="container">
<h1 class="title">You are a Performing Artist!</h1>
<div class="columns">
<div class="column has-text-centered">
<figure
class="image card notification has-background-light is-inline-block"
>
<div class="container">
<img src="" alt="Performing Artist" />
</div>
</figure>
</div>
</div>
</div>
</section>
</div>
<!-- Footer Code -->
<footer
class="footer has-background-grey-darker notification has-text-danger-light mt-5 mb-0"
>
<div class="content has-text-centered">
<p class="subtitle">Thanks for playing!</p>
</div>
</footer>
<script src="quiz_options.js" type="text/javascript" defer></script>
<script src="script.js" type="text/javascript" defer></script>
</body>
</html>