-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
47 lines (47 loc) · 2.19 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
47
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz | UDO DAVID</title>
<meta name="description" content="The rafting si,xt plan includes the site purpose, the target audience, branding information and a style guide for the course website project">
<meta name="author" content="UDO DAVID">
<link rel="stylesheet" href="styles/quiz.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="quizweb">
<h1>Simple Quiz</h1>
<form>
<div class="quiz">
<p>What does the acronym CSS stands for?</p>
<input type="text" name="q1" id="q1" required="required">
</div>
<div class="quiz">
<p>How are id and class attributes selected in CSS</p>
<textarea name="q2" id="q2" required="required"></textarea>
</div>
<div class="quiz">
<p>Which of the following is valid CSS comment</p>
<select name="q3" id="q3"> <option value="" selected disabled>Choose One </option></select>
</div>
<div class="quiz">
<p>4. What is the bottom margin given this declaration</p>
<span>margin: 10px 5px 15px;</span><br>
<input type="number" name="q4" id="14">
</div>
<button id="next-btn">Submit Quiz</button>
</form>
<!-- <h2 id="question">Question goes here</h2>
<div class="answer-buttons">
<button class="btn">Answer 1</button>
<button class="btn">Answer 2</button>
<button class="btn">Answer 3</button>
<button class="btn">Answer 4</button>
</div>
<button id="next-btn"></button>-->
</div>
</body>
</html>