-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
40 lines (34 loc) · 1.71 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
<!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>
<div class="container">
<form action="quiz" onsubmit="return ready()">
<h1 align="center">Quiz Application</h1>
<h3 class="result" align="center">Score:<span class="fa"></span></h3>
<h3>1.Best Programming language 2021</h3>
<p><input type="radio" name="q1" value="a" id="q1a">A. HTML</p>
<p><input type="radio" name="q1" value="b" id="q1b">B. Python</p>
<p><input type="radio" name="q1" value="c" id="q1c">C. Javascript</p>
<p><input type="radio" name="q1" value="d" id="q1d">D. C++</p>
<h3>2.HTML stands for -</h3>
<p><input type="radio" name="q2" value="a" id="q2a">A.HighText Machine Language </p>
<p><input type="radio" name="q2" value="b" id="q2b">B.HighText Machine Language </p>
<p><input type="radio" name="q2" value="c" id="q2c">C. Hypertext markup Language</p>
<p><input type="radio" name="q2" value="d" id="q2d">D. none</p>
<h3>3.CSS used for -</h3>
<p><input type="radio" name="q3" value="a" id="q3a">A.Designing </p>
<p><input type="radio" name="q3" value="b" id="q3b">B.Backend </p>
<p><input type="radio" name="q3" value="c" id="q3c">C. Structure</p>
<p><input type="radio" name="q3" value="d" id="q3d">D. none</p>
<button type="submit">Submit</button>
</form>
</div>
<script src="quiz.js"></script>
</body>
</html>