-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (81 loc) · 3.65 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crop Disease Prediction</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
</head>
<script src="//code.tidio.co/cigcdzg7tojfinsrlg1t4b7jpghgbsfq.js" async></script>
<body>
<nav>
<div class="menu">
<div class="logo">
<a href="#">AgroBrainAI</a>
</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Feedback</a></li>
</ul>
</div>
</nav>
<div class="img"></div>
<div class="center">
<div class="title"> Implementing the AI-powered solution for swiftly detecting and diagnosing crop diseases.</div>
<div class="btns">
<button>
<a href="#details">Learn More</a>
</button>
<br><br><br>
<a href="https://huggingface.co/spaces/VASUGI/AGOR_BRAIN_AI" target="_blank">
<button>Predict Diseases</button>
</a>
<br>
<br>
<a href="https://huggingface.co/spaces/SaradhaBalu/AGRO_BRAIN_BOT" target="_blank">
<button>ChatBot</button>
</a>
</div>
</div>
<div class="grid-section" id="details">
<h2>Plant Species</h2>
<div class="grid-container">
<div class="grid-item">
<img src="./images/pngtree-wheat-grain.jpg" alt="Plant 1">
<h3>Wheat</h3>
<p>Description of Plant - Wheat is one of the most widely cultivated cereal crops globally and holds significant importance in agriculture and food security. <a href="wheat.html"> <br>View More</a></p>
</div>
<div class="grid-item">
<img src="./images/sweet-corn-plant.jpg" alt="Plant 2">
<h3>Corn</h3>
<p>Description of Plant - Corn, scientifically known as Zea mays, is a cereal grain that holds immense agricultural, economic, and cultural significance worldwide. <a href="corn.html"> <br>View More</a></p>
</div>
<div class="grid-item">
<img src="./images/tomato.jpg" alt="Plant 3">
<h3>Tomato</h3>
<p>Description of Plant - Tomatoes (Solanum lycopersicum) are a widely cultivated and consumed fruit that is commonly grown as a vegetable in many cuisines around the world. <a href="tomato.html"> <br>View More</a></p>
</div>
<div class="grid-item">
<img src="./images/banana.jpg" alt="Plant 3">
<h3>Banana</h3>
<p>Description of Plant - Banana is a tropical fruit with wide popularity and significant economic importance. <a href="banana.html"> <br> View More</a></p>
</div>
<div class="grid-item">
<img src="./images/grapes.jpeg" alt="Plant 3">
<h3>Grapes</h3>
<p>Description of Plant - Grapes are one of the oldest cultivated fruits with diverse varieties and culinary uses. <a href="grapes.html"> <br>View More</a></p>
</div>
<div class="grid-item">
<img src="./images/sugarcane.jpg" alt="Plant 3">
<h3>Sugar Cane</h3>
<p>Description of Plant - Sugarcane is a tall perennial grass widely cultivated for its sucrose-rich stems, which are processed into sugar and various other products.<a href="sugarcane.html"> <br>View More</a></p>
</div>
<!-- Add more grid items as needed -->
</div>
</div>
</body>
</html>