-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
46 lines (45 loc) · 2.28 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz</title>
<link rel="stylesheet" href="quiz.css">
</head>
<body>
<button id="openn">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</button>
<nav id="nav" style="display: none;">
<button id="closee">X</button>
<h1 id="title">Internet</h1>
<p id="one"><a href="index.html">Home</a></p>
<p><a href="quiz.html">Quiz</a></p>
<p><a href="comments.html">Comments</a></p>
<p><a href="about-us.html">About Us</a></p>
</nav>
<h1>Internet</h1>
<h2><b>Q1)</b>What is internet??</h2>
<span><input type="radio" name="qa" id="qa">a vast collection of different networks</span> <br>
<span><input type="radio" name="qa" id="qa-correct">a single network</span>
<h2><b>Q2)</b>What does the internet term “thread” refer to?</h2>
<span><input type="radio" name="qb" id="qb">A series of linked messages</span> <br>
<span><input type="radio" name="qb" id="qb-correct">A self replicating virus</span> <br>
<span><input type="radio" name="qb" id="qb">A category of browser</span> <br>
<h2><b>Q3)</b>True or False: you should not give your personal details to unknown person </h2>
<span><input type="radio" name="qc" id="qc-correct">True</span> <br>
<span><input type="radio" name="qc" id="qc">False</span> <br>
<h2><b>Q4)</b>True or False: you shouldn't have passwords that are easy to guess </h2>
<span><input type="radio" name="qd" id="qd">True</span> <br>
<span><input type="radio" name="qd" id="qd-correct">False</span> <br>
<h2><b>Q5)</b>To join the internet, the computer has to be connected to a</h2>
<span><input type="radio" name="qe" id="qe">internet architecture board</span> <br>
<span><input type="radio" name="qe" id="qe">internet society</span> <br>
<span><input type="radio" name="qe" id="qe-correct">internet service provider</span> <br>
<span><input type="radio" name="qe" id="qe">none of the mentioned</span> <br>
<button id="submit">Submit</button>
<script src="./quiz.js"></script>
</body>
</html>