-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.html
49 lines (41 loc) · 1.53 KB
/
question.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exam</title>
<link rel="stylesheet" href="./styles/question.css">
<link rel="stylesheet" href="./styles/global.css">
</head>
<body>
<h1>Take Exam</h1>
<main class="main0">
<div class="exam-box">
<h4 class="qtn-no">1/3</h4>
<h4 class="time">12:20</h4>
<h2>What is a cell?</h2>
<label for="human">
<input type="radio" name="option">Human
</label>
<label for="micro-organism">
<input type="radio" name="option">Micro organism
</label>
<label for="animal">
<input type="radio" name="option">Animal
</label>
<label for="none">
<input type="radio" name="option">None of the above
</label>
<input type="button" value="PREV" class="prev-btn">
<input type="button" value="NEXT" class="nxt-btn">
</div>
</main>
<h3 class="home-pg"><a href="./myquiz.html">Home Page</a></h3>
<br>
<marquee behavior="scroll" direction="right">This is just for educational purposes only, study your course curriculum for exam and test</marquee>
<footer>
© 200lv CSc 2021/2022
</footer>
</body>
</html>