-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (71 loc) · 3.53 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
<html>
<head>
<title>Anime Quiz</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/7.11.0/sweetalert2.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/7.11.0/sweetalert2.all.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body id="anime_body">
<div id="anime_div_1">
<form>
<h2>
Question 1 - What is the image below:
<br>
<a target="_blank" href="https://static.wikia.nocookie.net/naruto/images/5/56/Sharingan_Triple.svg/revision/latest/scale-to-width-down/1200?cb=20091022225716">Click To View Image</a>
</h2>
<input type="radio" name="anime_quiz_Q1" id="OPT1_Q1"> Goofy Eyes<br>
<input type="radio"name="anime_quiz_Q1" id="OPT2_Q1"> Sharigan Eyes<br>
<input type="radio"name="anime_quiz_Q1" id="OPT3_Q1"> Red Tear<br>
</form>
<button id="anime_button" onclick="anime_question_1()">Submit</button>
</div>
<div id="anime_div_2">
<form>
<h2>
Question 2 - What statement is true
</h2>
<input type="radio" name="anime_quiz_Q2" id="OPT1_Q2"> Attack On Titan had a crossover with the movie Free Guy<br>
<input type="radio"name="anime_quiz_Q2" id="OPT2_Q2"> Attack On Titan had a crossover with Grand Theft Auto V<br>
<input type="radio"name="anime_quiz_Q2" id="OPT3_Q2"> Attack On Titan had a crossover with Marvel's Avengers<br>
</form>
<button id="anime_button" onclick="anime_question_2()">Submit</button>
</div>
<div id="anime_div_3">
<form>
<h2>
Question 3 - What changes happened to Kaneki when being tortured
</h2>
<input type="radio" name="anime_quiz_Q3" id="OPT1_Q3"> Kaneki hair's turned white while being tortured<br>
<input type="radio"name="anime_quiz_Q3" id="OPT2_Q3"> Kaneki went insane while being tortured<br>
<input type="radio"name="anime_quiz_Q3" id="OPT3_Q3"> Kaneki did not get tortured<br>
</form>
<button id="anime_button" onclick="anime_question_3()">Submit</button>
</div>
<div id="anime_div_4">
<form>
<h2>
Question 4 - The Manga Is Way Gorier Than The Anime
</h2>
<input type="radio" name="anime_quiz_Q4" id="OPT1_Q4"> The manga is way gorier than the anime<br>
<input type="radio"name="anime_quiz_Q4" id="OPT2_Q4"> The anime is way gorier than the manga<br>
<input type="radio"name="anime_quiz_Q4" id="OPT3_Q4"> They are equal in terms of gore<br>
</form>
<button id="anime_button" onclick="anime_question_4()">Submit</button>
</div>
<div id="anime_div_5">
<form>
<h2>
Question 5 (Last Question) - What is Naruto Uzumaki Catchphrase
</h2>
<input type="radio" name="anime_quiz_Q5" id="OPT1_Q5"> Oni-chan<br>
<input type="radio"name="anime_quiz_Q5" id="OPT2_Q5"> Dattebayo<br>
<input type="radio"name="anime_quiz_Q5" id="OPT3_Q5"> Aiko<br>
</form>
<button id="anime_button" onclick="anime_question_5()">Submit</button>
</div>
<div id="anime_div_result">
<h2 id="result"></h2>
</div>
<script src="script.js"></script>
</body>
</html>