-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Vote...</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="static/vote.css" />
<meta name="description" content="Vote..." />
<meta name="robots" content="noindex,nofollow" />
<script type="text/javascript" src="static/ajax.js"></script>
<script type="text/javascript" src="static/vote.js"></script>
</head>
<body onload="vote.init();">
<header>
<div id="title">Köpfe statt Inhalte!</div>
<span id="status"></span>
</header>
<div id="content">
<div id="question">Würdest du diesen Politiker wählen?</div>
<div id="picture"></div>
<div id="answers"></div>
<br />
<span class="grey">Pfeiltasten zum wählen (Links: JA, Rechts: Nein)<br />
Leerzeichen -> weiter
</span>
<br />
<span class="button" onclick="vote.getRandomImage()">Nächster!</span>
</div>
<footer>
Zusammengehackt auf der <a href="http://eh14.easterhegg.eu/">Easterhegg 2014</a>
<br/>
Hintergrundfarbe ist #00fefe!
<br/>
Alf for President!
</footer>
</body>
</html>