-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (82 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>US Quiz</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" ></script>
<style>
@import url("css/style.css");
</style>
</head>
<body class="text-center">
<h1 class="jumbotron">
US Geography Quiz
</h1>
<h3><span id="markImg1"></span>What is the Capitial of Californa? </h3>
<input type="text" id="q1">
<br><br>
<div id="q1Feedback"></div>
<br>
<h3><span id ="markImg2"></span>What is the longes river?</h3>
<select id="q2">
<option value= "">Select One</option>
<option value= "ms">Mississippi</option>
<option value= "mo">Missouri</option>
<option value= "co">Colorado</option>
<option value= "de">Delaware</option>
</select>
<br><br>
<div id="q2Feedback"></div>
<br>
<h3><span id="markImg3"></span>What Presidents are carved into mount Rushmore?</h3>
<input type="checkbox" id="Jackson" > <label for="Jackson">A.Jackson</label>
<input type="checkbox" id="Franklin"> <label for="Franklin">B.Franklin</label>
<input type="checkbox" id="Jefferson"> <label for="Jefferson">T.Jefferson</label>
<input type="checkbox" id="Roosevelt"> <label for="Roosevelt">T.Roosevelt</label>
<br><br>
<div id="q3Feedback"></div>
<br>
<h3><span id="markImg4"></span>What is the smallest US State?</h3>
<div id="q4Choices"></div>
<div id="q4Feedback"></div>
<br><br>
<h3><span id ="markImg5"></span>What image is in the Great Seal of the State of California?</h3>
<img src="img/seal1.png" alt= "Seal 1" class="q5Choice" id="seal1">
<img src="img/seal2.png" alt= "Seal 2" class="q5Choice" id="seal2">
<img src="img/seal3.png" alt= "Seal 3" class="q5Choice" id="seal3">
<div id ="q5Feedback"></div>
<br><br>
<h3><span id ="markImg6"></span>Which is the largest populous state in the U.S.</h3>
<input type="checkbox" id="Newyork" > <label for="Newyork">Newyork</label>
<input type="checkbox" id="Texas"> <label for="Texas">Texas</label>
<input type="checkbox" id="California"> <label for="California">Californa</label>
<input type="checkbox" id="Flordia "> <label for="Flordia">Flordia</label>
<br><br>
<div id="q6Feedback"></div>
<br>
<h3><span id="markImg7"></span>How many states does the USA have? </h3>
<input type="text" id="q7">
<br><br>
<div id="q7Feedback"></div>
<br>
<h3><span id ="markIm8"></span>Which mountain summit is the largest in the USA?</h3>
<select id="q8">
<option value= "">Select One</option>
<option value= "d">Denali</option>
<option value= "mw">Mount Whitney</option>
<option value= "mr">Mount Rainer</option>
<option value= "mnw">Mount Washington</option>
</select>
<br><br>
<div id="q8Feedback"></div>
<br>
<h3 id="validationFdbK" class="bg-danger text-white"></h3>
<button class ="btn btn-outline-success">Submit Quiz</button>
<br>
<h2 id="totalScore" class ="text-info"></h2>
<h3 id="totalAttempts" class = "text-info"></h3>
<script type="text/javascript" src="app.js"></script>
</body>
</html>