-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (105 loc) · 5.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anime Survey Form</title>
<!--Fonts-->
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&family=Roboto:wght@400;500;700&family=Space+Mono&display=swap" rel="stylesheet">
<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=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&family=Roboto:wght@400;500;700&family=Space+Mono&display=swap" rel="stylesheet">
<!--CSS Stylesheet-->
<link rel="stylesheet" href="./styles.css">
</head>
<header>
<h1>Anime Survey</h1>
<img id="banner" src="./ichigoimg.jpg" alt="banner-image">
</header>
<form>
<fieldset>
<legend>Basic Info</legend>
<label for="name">Your Name<br>
<input class="info-input" id="name" name="name" placeholder="Naruto Uzumaki" required>
</label><br>
<label for="email">Email Address<br><input class="info-input" id="email" name="email" type="email" placeholder="[email protected]" required></label>
</fieldset><hr class="section-hr">
<fieldset>
<legend>Anime Survey</legend>
<label for="fav-anime">Which one is your favorite anime from the options given?<br>
<select name="fav-anime" id="fav-anime">
<option value="no-preference" selected></option>
<option value="Naruto">Naruto</option>
<option value="One-Piece">One Piece</option>
<option value="Bleach">Bleach</option>
<option value="Dragon-Ball">Dragon Ball</option>
<option value="Death-Note">Death Note</option>
<option value="AOT">Attack On Titan</option>
<option value="FMAB">Fullmetal Alchemist: Brotherhood</option>
<option value="Jojo">Jojo's Bizzare Adventure</option>
<option value="Haikyu!!">Haikyu!!</option>
<option value="Monster">Monster</option>
<option value="Vinland-Saga">Vinland Saga</option>
</select>
</label><br>
<label for="fav-protagonist">Who's your favorite anime protagonist/main character from the options given?<br>
<select name="fav-protagonist" id="fav-protagonist">
<option value="no-preference" selected></option>
<option value="Naruto Uzumaki">Naruto Uzumaki (Naruto)</option>
<option value="Ichigo Kurosaki">Ichigo Kurosaki (Bleach)</option>
<option value="Goku">Goku (Dragon Ball)</option>
<option value="Monkey D. Luffy">Monkey D. Luffy (One Piece)</option>
<option value="Edward Elric">Edward Elric (Fullmetal Alchemist: Brotherhood)</option>
<option value="Jotaro Kujo">Jotaro Kujo (JoJo's Bizarre Adventure)</option>
<option value="Hinata Shoyo">Hinata Shoyo (Haikyuu!!)</option>
<option value="Thorfinn Karlsefni">Thorfinn Karlsefni (Vinland Saga)</option>
<option value="Light Yagami">Light Yagami (Death Note)</option>
<option value="Lelouch Lamperouge">Lelouch Lamperouge (Code Geass)</option>
</select>
</label><br>
<label for="fav-antagonist">Who's your favorite anime antagonist/villain from the options given?<br>
<select name="fav-antagonist" id="fav-antagonist">
<option value="no-preference" selected></option>
<option value="Orochimaru">Orochimaru (Naruto)</option>
<option value="Madara">Madara Uchiha (Naruto)</option>
<option value="Aizen Sosuke">Aizen Sosuke (Bleach)</option>
<option value="Hisoka">Hisoka (Hunter X Hunter)</option>
<option value="Meruem">Meruem (Hunter X Hunter)</option>
<option value="Frieza">Frieza (Dragon Ball)</option>
<option value="Donquixote Doflamingo">Donquixote Doflamingo (One Piece)</option>
<option value="Father">Father (Fullmetal Alchemist: Brotherhood)</option>
<option value="Dio Brando">Dio Brando (JoJo's Bizarre Adventure)</option>
<option value="Suga">Suga (Haikyuu!!)</option>
<option value="Askeladd">Askeladd (Vinland Saga)</option>
<option value="L">L (Death Note)</option>
</select>
</label><br>
<label for="fav-genre">Which of the following is your favorite genre?<br>
<select name="fav-genre" id="fav-genre">
<option value="no-preference" selected></option>
<option value="Shonen">Shonen</option>
<option value="Seinen">Seinen</option>
<option value="Shojo">Shojo</option>
<option value="Josei">Josei</option>
<option value="Isekai">Isekai</option>
<option value="Mecha">Mecha</option>
<option value="Psychological">Psychological</option>
<option value="Slice of Life">Slice of Life</option>
<option value="Fantasy">Fantasy</option>
<option value="Horror">Horror</option>
</select>
</label><br>
<label for="lang">In which language do you watch anime?<br>
<input id="lang" name="lang" value="Japanese" type="radio">Japanese<br>
<input id="lang" name="lang" value="English" type="radio">English<br>
<input id="lang" name="lang" value="Regional" type="radio">Regional<br>
</label>
</fieldset>
<button id="submit" type="submit">Submit</button>
</form>
<a href="https://github.com/arnav123098">
<img id="github" src="./github.png" alt="GitHub" title="Follow on GitHub">
</a>
</html>