forked from SapplyValues/SapplyValues.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 3.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="x-icon" href="img/icon.png">
<link rel="shortcut icon" type="x-icon" href="img/icon.png">
<title app-details="name"></title>
<link href="css/Montserrat-300-400-700_Roboto-400-700.css" rel="stylesheet">
<link href='css/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<app>
<header>
<h1 class="title" app-details="name"></h1>
<p>
v<span app-details="version"></span>
</p>
</header>
<hr>
<img src="img/compass.png" id="banner">
<button class="button" onclick="location.href='pages/instructions.html';">Click here to start!</button>
<hr>
<sections>
<section>
<h2>About the Quiz</h2>
<p>
This quiz is a political quiz to identify your political quadrant on the political compass. And this is my version of the quiz, more questions, more accurate.<br>
You will be presented by a statement, and then you will answer with your opinion on the statement, from <b>Extremely Agree</b> to <b>Extremely Disagree</b>, with each answer slightly affecting your scores. At the end of the quiz, your answers will be displayed on the political compass.<br><br>
There are <b><u><span id="numOfQuestions"></span></u></b> questions in the test.
</p>
</section>
<section>
<h2>What is SapplyValues?</h2>
<p>
SapplyValues is a political compass test that combines the questions of the <a href="http://sapplypoliticalcompass.com/" target="_blank">Sapply test</a> with the UI of <a href="https://8values.github.io/" target="_blank">8values</a>.
</p>
</section>
<section>
<h2>What is <span app-details="name"></span>?</h2>
<p>
<span app-details="name"></span> is a fork and modified version of <a href="https://sapplyvalues.github.io/" target="_blank">SapplyValues</a>.
</p>
</section>
<section>
<h2>Privacy notice</h2>
<p>We don't store any result or any information.</p>
</section>
<section>
<h2>Legal notice</h2>
<p>Copyright (C) 2017-2019 8values</p>
<p>Copyright (C) 2020-2021 SapplyValues</p>
<p>Copyright (C) 2021 <span app-details="name"></span></p>
<p>8values, 9axes, SapplyValues, and <span app-details="name"></span> are licensed under the Expat/MIT license. You can find a copy of the license <a href="LICENSE" target="_blank">here</a>.</p>
</section>
</sections>
</app>
<script src="js/main.js"></script>
<script src="js/index.js"></script>
<script src="js/questions.js"></script>
<script>
document.getElementById("numOfQuestions").innerHTML = questions.length;
</script>
</body>
</html>