-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
61 lines (57 loc) · 3.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agro Companion</title>
<link rel="icon" type="image/x-icon" href="css/icon.webp">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navigation bar -->
<nav>
<div class="nav-container">
<div class="brand">Agro Companion</div>
<button class="menu-toggle" id="menu-toggle">☰</button>
<div class="nav-links" id="nav-links">
<a href="detect.html">Soil Detection</a>
<a href="recommend.html">Crop Recommendation</a>
<a href="info.html">Crop Info</a>
</div>
</div>
</nav>
<!-- Main content -->
<div class="container">
<h1>All in one solution for agriculture</h1>
<p>
Agro Companion is a web application that provides a one-stop solution for all your agriculture needs. You can use this application to identify the type of soil, get crop recommendations, and find information about different crops.
Its easy to use interface makes it simple for farmers and gardeners to get the information they need to grow healthy crops and improve their yields.
Its free to use and accessible from any device with an internet connection.
<br>
<br>
You can simply upload a photo of the soil you want to identify, use our advance crop recommendation tool or get important information about a specific crop.
</p>
<div class="bttn-container">
<button onclick="window.location.href='detect.html'">Soil Detection</button>
<button onclick="window.location.href='recommend.html'">Crop Recommendation</button>
<button onclick="window.location.href='info.html'">Crop Info</button>
</div>
</div>
<div class="wiki-container">
<h1>Crops</h1>
<p>Crops are plants that are grown and harvested for food, livestock feed, biofuel, medicine, and other products.
The term is used to differentiate plants that are grown and harvested from wild plants.
Crops are typically grown in large quantities to produce food and other products for humans and animals.
They are an essential part of agriculture and are grown in fields, gardens, and greenhouses around the world.
</p>
<h1>Soil</h1>
<p>Soil is a mixture of organic matter, minerals, gases, liquids, and organisms that together support life.
It is a natural body that exists on the earth's surface and is made up of weathered rock and mineral particles,
organic matter, water, air, and living organisms. Soil is essential for plant growth and provides nutrients,
water, and support for plants to grow. It is a vital component of the earth's ecosystem and plays a crucial role in agriculture,
forestry, and other human activities.
</p>
</div>
<script src="js/script.js"></script>
</body>
</html>