forked from TanishBansal9102/MyJavascriptGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 917 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 917 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
<!DOCTYPE html>
<html>
<head>
<title>Quiz Game</title>
<link rel="stylesheet" type="text/css" href="quiz.css">
</head>
<body>
<div id = "content">
<h1>Javascript Quiz</h1>
<h2>Question <span id = "question-number">1</span> of 5:</h2>
<h3>Inside which HTML element do we put the JavaScript?</h3>
<section id = "options">
<h4><input type="radio" name="radio"><span id="q1"><<span class = "hide">"</span>js></span></h4>
<h4><input type="radio" name="radio"><span id="q2"><<span class = "hide">"</span>link></span></h4>
<h4><input type="radio" name="radio"><span id="q3"><<span class = "hide">"</span>script></span></h4>
<h4><input type="radio" name="radio"><span id="q4"><<span class = "hide">"</span>javascript></span></h4>
</section>
<div id = "button">
<button>Next</button>
</div>
</div>
<script type="text/javascript" src="quiz.js"></script>
</body>
</html>