forked from tinkerhub/stackup-teamplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
38 lines (35 loc) · 1.25 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Website</title>
<link rel="stylesheet" href="css/home-style.css">
</head>
<body>
<header>
<h1>Welcome to Our Quiz Website</h1>
</header>
<section class="categories">
<h2>Choose a Category</h2>
<div class="dropdown">
<button class="dropbtn">Quiz Categories</button>
<div class="dropdown-content">
<a href="#">General Knowledge</a>
<a href="#">Programming</a>
<a href="https://mindmaster17.github.io/teamexpo/quiz/quiz.html">Geography</a>
<a href="#">Science</a>
<a href="#">History</a>
</div>
</div>
</section>
<section class="instructions">
<h2>Instructions</h2>
<p>"Welcome to our Quiz! Answer multiple-choice questions, earn points for correct answers, and have fun testing your knowledge in this each category"</p>
</section>
<section class="start-quiz">
<h2>Start Your Quiz</h2>
<a href="https://mindmaster17.github.io/teamexpo/quiz/quiz.html" class="start-btn">Start</a>
</section>
</body>
</html>