-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquizzes.html
66 lines (63 loc) · 2.96 KB
/
quizzes.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DigiHerb - Quizzes</title>
<link rel="stylesheet" href="quizzes.css">
</head>
<body>
<header>
<div class="header-container">
<h1>DigiHerb</h1>
<div class="header-middle"></div>
<nav>
<a href="index.html" class="nav-btn">Home</a>
<a href="quizzes.html" class="nav-btn active">Quizzes</a>
</nav>
</div>
</header>
<main>
<section id="intro">
<h1>Test Your Expertise on Medicinal Plants</h1>
<p>
Welcome to the DigiHerb Quizzes page! Here, you can put your knowledge of medicinal plants to the test with our engaging and informative quizzes. Our quizzes cover a wide range of topics related to herbal medicine, from plant identification to understanding their medicinal uses.
</p>
<p>
Each quiz consists of multiple-choice questions designed to challenge your understanding and expand your knowledge. Whether you're a beginner or an experienced herbalist, our quizzes will provide valuable insights and help you learn more about the fascinating world of medicinal plants.
</p>
<p>
Get ready to test your skills and see how much you really know about the healing power of plants. Good luck!
</p>
</section>
<section id="quiz-categories">
<h2>Quiz Categories</h2>
<div class="category-container">
<div class="category-box">
<h3>Plant Identification</h3>
<p>Identify different medicinal plants and their key characteristics.</p>
<a href="quiz_instructions.html" class="start-quiz-btn">Start Quiz</a>
</div>
<div class="category-box">
<h3>Uses of Medicinal Plants</h3>
<p>Learn about the various uses of medicinal plants in traditional and modern medicine.</p>
<a href="quiz_instructions.html" class="start-quiz-btn">Start Quiz</a>
</div>
<div class="category-box">
<h3>Herbal Remedies</h3>
<p>Understand the preparation and application of herbal remedies for common ailments.</p>
<a href="quiz_instructions.html" class="start-quiz-btn">Start Quiz</a>
</div>
<div class="category-box">
<h3>Plant Facts</h3>
<p>Test your knowledge on interesting facts and trivia about medicinal plants.</p>
<a href="quiz_instructions.html" class="start-quiz-btn">Start Quiz</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 DigiHerb. All rights reserved.</p>
</footer>
</body>
</html>