-
Notifications
You must be signed in to change notification settings - Fork 213
/
agro.html
53 lines (44 loc) · 2.5 KB
/
agro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agriculture Website</title>
</head>
<body style="font-family: Arial, sans-serif; margin: 0; padding: 0;">
<div style="background-color: #4CAF50; color: white; padding: 10px; text-align: center;">
<h1>Agriculture Hub</h1>
</div>
<nav style="background-color: #333; color: white; padding: 10px; text-align: center;">
<a href="#" style="color: white; text-decoration: none; margin: 0 15px;">Home</a>
<a href="#" style="color: white; text-decoration: none; margin: 0 15px;">Products</a>
<a href="#" style="color: white; text-decoration: none; margin: 0 15px;">About Us</a>
<a href="#" style="color: white; text-decoration: none; margin: 0 15px;">Contact</a>
</nav>
<div style="text-align: center; margin: 20px;">
<h2>Welcome to Agriculture Hub!</h2>
<p>Explore our wide range of high-quality agricultural products.</p>
</div>
<div style="display: flex; justify-content: space-around; background-color: #f9f9f9; padding: 20px;">
<div style="flex: 1; padding: 20px; text-align: center;">
<h3>Quality Seeds</h3>
<img src="seeds.jpg" alt="Seeds" style="width: 80%; height: auto; margin-bottom: 10px;">
<p>Choose from our variety of premium quality seeds for your crops.</p>
</div>
<div style="flex: 1; padding: 20px; text-align: center;">
<h3>Farm Equipment</h3>
<img src="equipment.jpg" alt="Equipment" style="width: 80%; height: auto; margin-bottom: 10px;">
<p>Find the latest farm equipment to enhance your agricultural practices.</p>
</div>
</div>
<div style="background-color: #4CAF50; color: white; text-align: center; padding: 20px;">
<h2>Contact Us</h2>
<form onsubmit="alert('Form submitted!'); return false;">
<input type="text" placeholder="Your Name" style="padding: 10px; margin-bottom: 10px; width: 80%;" required><br>
<input type="email" placeholder="Your Email" style="padding: 10px; margin-bottom: 10px; width: 80%;" required><br>
<textarea placeholder="Your Message" style="padding: 10px; margin-bottom: 10px; width: 80%;" required></textarea><br>
<button type="submit" style="background-color: #333; color: white; padding: 10px 20px; border: none; cursor: pointer;">Submit</button>
</form>
</div>
</body>
</html>