-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (24 loc) · 919 Bytes
/
index.html
File metadata and controls
31 lines (24 loc) · 919 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js"></script>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<script src="application.js"></script>
<title>Tim's JS Quizlet!</title>
</head>
<body>
<h2>JS and JQuery Quiz</h2>
<div class="intro">
Welcome! When the button at the bottom is clicked, the question and answers below will progress to the next question and respective answer chioces. Good luck!
<br>
</div>
<br>
<div class="questions">Ready?</div>
<br>
<input type="radio" id="radio1" name="radios" value="1"><label id="r1"> Yes</label></br>
<input type="radio" id="radio2" name="radios" value="2"><label id="r2"> No</label></br>
<input type="radio" id="radio3" name="radios" value="3"><label id="r3"> Wat </label></br>
</br>
<button>Submit</button>
</body>
</html>