-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.html
More file actions
45 lines (41 loc) · 1.22 KB
/
quiz.html
File metadata and controls
45 lines (41 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Quiz | The AI Oldtimer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><strong>The AI Oldtimer</strong></li>
</ul>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="book.html">Book</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</nav>
<div class="container">
<h2>Why Do You Need AI?</h2>
<form>
<label for="q1">How much time do you spend on repetitive tasks?</label>
<select id="q1">
<option>Too much</option>
<option>A little</option>
<option>None</option>
</select>
<label for="q2">Do you want to automate processes in your business?</label>
<select id="q2">
<option>Yes</option>
<option>No</option>
</select>
<button type="submit">Submit</button>
</form>
</div>
<footer>
© 2024 The AI Oldtimer. All rights reserved.
</footer>
</body>
</html>