-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
119 lines (106 loc) · 3.1 KB
/
about.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Weed Herbarium</title>
<style>
/* General styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Header styles */
header {
background-color: #228B22;
color: white;
padding: 10px 0;
text-align: center;
}
/* Main content styles */
main {
padding: 20px;
margin: 20px auto;
max-width: 800px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* Section styles */
section {
margin-bottom: 30px;
}
section h2 {
color: #333;
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
}
section p {
font-size: 18px;
margin: 10px 0;
color: #555;
}
/* List styles */
ul {
list-style-type: disc;
margin: 10px 0;
padding-left: 20px;
}
ul li {
font-size: 18px;
color: #555;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Digital Weed Herbarium</h1>
</header>
<main>
<section id="introduction">
<h2>Welcome to the Digital Weed Herbarium</h2>
<p>
The Digital Weed Herbarium is a comprehensive collection of digitized weed specimens,
offering an extensive resource for botanists, researchers, and enthusiasts.
This platform provides a detailed database of various weed species, their taxonomy,
geographical distribution, and ecological significance.
</p>
</section>
<section id="importance">
<h2>Importance of Digital Weed Herbarium</h2>
<p>
Weeds are an integral part of biodiversity, and understanding them is crucial for
agriculture, environmental management, and conservation. The Digital Weed Herbarium
allows for the preservation of weed specimens in digital format, ensuring that the
information is accessible worldwide. This is particularly important for regions
facing threats to their natural flora, as it helps in the identification and
management of invasive species.
</p>
</section>
<section id="features">
<h2>Key Features</h2>
<ul>
<li>High-resolution images of weed specimens</li>
<li>Detailed taxonomic information</li>
<li>Geographical distribution maps</li>
<li>Searchable database for easy access to information</li>
<li>Regular updates with new specimens and data</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Digital Weed Herbarium. All rights reserved.</p>
</footer>
</body>
</html>