-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolls.html
100 lines (100 loc) · 5.29 KB
/
polls.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="LoGH fan site and discussions">
<meta name="keywords" content="LoGH, Legend of the Galactic Heroes, Yang Wen-li,
Reinhard von Lohengramm, anime, Ginga Eiyū Densetsu, Yoshiki Tanaka">
<meta name="author" content="Chris Moore">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legend of the Galactic Heroes Hub</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="stylesheet" href="styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KLTSZ4DFR5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KLTSZ4DFR5');
</script>
</head>
<body>
<div class="nav">
<img src="assets/icon.png" alt="LoGH Hub Icon" height="64" width="64">
<p id="navtext">
<a href = index.html>Home</a>
<a href = char-analyses.html>Character Analyses</a>
<a href = theme-discussions.html>Theme Discussions</a>
<a href = quotes.html>Quotes</a>
<a href = polls.html>Polls</a>
</p>
</div>
<section>
<h1>Polls</h1>
</section>
<section class="container">
<form id="form1" method="POST">
<div class="subContainer">
<h2 style="text-align: center;">Most Evil Character in LoGH?</h2>
<input type="radio" id="bishop" name="evil" value="bishop">
<label for="bishop">Bishop de Villier</label><br>
<input type="radio" id="rubinsky" name="evil" value="rubinsky">
<label for="rubinsky">Adrian Rubinsky</label><br>
<input type="radio" id="oberstein" name="evil" value="oberstein">
<label for="oberstein">Paul von Oberstein</label><br>
<input type="radio" id="braunschweig" name="evil" value="braunschweig">
<label for="braunschweig">Duke Otho von Braunschweig</label><br>
<input type="radio" id="trunicht" name="evil" value="trunicht">
<label for="trunicht">Job Trunicht</label><br>
<input type="radio" id="falk" name="evil" value="falk">
<label for="falk">Andrew Falk</label><br>
</div>
<div class="subContainer">
<h2 style="text-align: center;">Best Military Tactician in LoGH?</h2>
<input type="radio" id="yang" name="tactician" value="yang">
<label for="yang">Yang Wen-li</label><br>
<input type="radio" id="reinhard" name="tactician" value="reinhard">
<label for="reinhard">Reinhard von Lohengramm</label><br>
<input type="radio" id="kircheis" name="tactician" value="kircheis">
<label for="kircheis">Siegfried Kircheis</label><br>
<input type="radio" id="mittermeyer" name="tactician" value="mittermeyer">
<label for="mittermeyer">Wolfgang von Mittermeyer</label><br>
<input type="radio" id="reuenthal" name="tactician" value="reuenthal">
<label for="reuenthal">Oskar von Reuenthal</label><br>
<input type="radio" id="julian" name="tactician" value="julian">
<label for="julian">Julian Mintz</label><br>
<input type="radio" id="merkatz" name="tactician" value="merkatz">
<label for="merkatz">Willibald Joachim von Merkatz</label><br>
<input type="radio" id="bewcock" name="tactician" value="bewcock">
<label for="bewcock">Alexandre von Bewcock</label><br>
</div>
<div class="subContainer">
<h2 style="text-align: center;">Best Faction in LoGH?</h2>
<input type="radio" id="fpa" name="faction" value="fpa">
<label for="fpa">Free Planets Alliance</label><br>
<input type="radio" id="el-facil" name="faction" value="el-facil">
<label for="el-facil">El Facil Revolutionary Government</label><br>
<input type="radio" id="iserlohn" name="faction" value="iserlohn">
<label for="iserlohn">Iserlohn Republic</label><br>
<input type="radio" id="lohengramm" name="faction" value="lohengramm">
<label for="lohengramm">New Galactic Empire (Lohengramm Dynasty)</label><br>
<input type="radio" id="goldenbaum" name="faction" value="goldenbaum">
<label for="goldenbaum">Galactic Empire (Goldenbaum Dynasty)</label><br>
<input type="radio" id="fezzan" name="faction" value="fezzan">
<label for="fezzan">Dominion of Fezzan</label><br>
<input type="radio" id="terraists" name="faction" value="terraists">
<label for="terraists">Terraist Church</label><br>
</div>
<input type="submit" value="Submit" class="button" id="column2" style="width: 5rem">
</form>
</section>
<div class="space">
</div>
<footer>
<p>
<strong>Legend of the Galactic Heroes Hub | Chris Moore, 2024</strong>
</p>
</footer>
</body>
</html>