-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (122 loc) · 4.54 KB
/
index.html
File metadata and controls
148 lines (122 loc) · 4.54 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Political Compass Project</title>
<link rel='shortcut icon' type='image/x-icon' href='icon.ico' />
</head>
<script>
window.onload = start;
function start()
{
//This is where you call functions and put general document editing code.
}
function createPara(text, id)
//Very imporant function to reduce time wasted making paragraphs manually!
{
var para = document.createElement("p");
var t = document.createTextNode(text);
para.appendChild(t);
document.getElementById("main").appendChild(para);
para.id = id;
}
//The rest of the functions go here
</script>
<script src="//static.getclicky.com/js" type="text/javascript"></script>
<script type="text/javascript">try{ clicky.init(101050272); }catch(e){}</script>
<style>
@font-face
{
font-family: "Lora";
src: url('Lora-Regular.ttf'),
url('Lora-Regular.ttf'); /* IE */
}
@font-face
{
font-family: "Lato";
src: url('Lato-Regular.ttf'),
url('Lato-Regular.ttf'); /* IE */
}
@font-face
{
font-family: "Opensans";
src: url('OpenSans-Regular.ttf'),
url('OpenSans-Regular.ttf'); /* IE */
}
@font-face
{
font-family: "Raleway";
src: url('Raleway-Regular'),
url('Raleway-Regular'); /* IE */
}
@font-face
{
font-family: "Slabo";
src: url('Slabo27px-Regular.ttf'),
url('Slabo27px-Regular.ttf'); /* IE */
}
body {
background-image: url("stardust.png");
}
#main {
background-image: url("greyzz.png");
margin: auto;
height: 660px;
width: 130vh;
border-radius: 7px;
box-shadow: 8px 10px 4px #262626;
}
h1 {
margin-left: 14px;
font-family: Lora;
font-size: 40px;
padding-top: 60px;
}
h3 {
margin-left: 140px;
font-family: Lora;
font-size: 15px;
}
h4{
margin-left: 20px;
line-height: 1.6;
font-family: Lato;
font-size: 20px;
}
h6{
margin-left: 40px;
font-size: 8px:
}
a{
margin-left: 30px;
font-family: Raleway;
font-size: 31px;
}
#jesus{
margin-left: 46px;
}
</style>
<body>
<div id="main">
<!-- You already knows what goes here. !-->
<h1>A proper three-dimensional political compass</h1>
<h4 id="jesus"> Jesus christ, finally.</h4>
<h4>Welcome! After much toil and struggle, I bring to you a compass website that isn't complete whack! All the other sites makes the mistake that they try to fit your political opinion on two dimensions, or try and stretch them into 10. I am sure we can all agree you need ATLEAST three! <i>Authoritarianism is not inherently reactionary.</i>! <h6>beat it, politicalcompass.org</h6><a href="thequiz.html">Click here to take the quiz.</a></h4>
</div>
</body>
</html>
<!-- Political compass webpage written in HTML and JS.
Copyright (C) 2017 Sapply
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Contact info:
Email - vithefirary@gmail.com
!-->