-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (54 loc) · 2.62 KB
/
index.html
File metadata and controls
92 lines (54 loc) · 2.62 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
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
<!DOCTYPE html>
<html>
<head>
<title>Mistyx's Characters Quiz</title>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<meta property="og:title" content="Mistyx's Characters Quiz" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Answer 20 questions and find out which character from Mistyx's universe you most resemble!" />
<meta property="og:url" content="https://edn0.github.io/character_quiz/" />
<meta property="og:image" content="https://edn0.github.io/character_quiz/img/bg.jpg" />
</head>
<div id="container">
<div class="header">
<div class="title">Mistyx's Characters Quiz</div>
</div>
<div id="q_frame">
<div id="progression"></div>
<div id="question">Answer questions to find out which character from Mistyx's universe you most resemble.</div>
<div id="score">PERCENTAGE</div>
<input id="slider" type="range" value="50" min="0" max="100">
<div class="attributes">
<div id="attribute_0"></div>
<div id="attribute_1"></div>
</div>
<input id="button" type="button" onclick="submit()" value="START">
</div>
<div id="a_frame">
<div id="final_char_0">
<img id="final_char_img_0" src="" width="100" height="130">
<div id="final_char_name_0"></div>
</div>
<div id="final_char_1">
<img id="final_char_img_1" src="" width="100" height="130">
<div id="final_char_name_1"></div>
</div>
<div id="final_char_2">
<img id="final_char_img_2" src="" width="100" height="130">
<div id="final_char_name_2"></div>
</div>
</div>
<div id="a_frame_desc">
<div id="final_char_desc_container">
<div id="final_char_desc_0"></div>
<div id="final_char_desc_1"></div>
<div id="final_char_desc_2"></div>
</div>
</div>
</div>
</div>
</html>