-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 3.04 KB
/
Copy pathindex.html
File metadata and controls
84 lines (77 loc) · 3.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CropSense - Homepage</title>
<!-- Bootstrap CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<header>
<nav class="navbar">
<div class="logo">
<a href="#hero" class="logo"><img src="logo.png" alt="My Logo" class="logo-img">CropSense</a>
</div>
<ul class="nav-links">
<li><a href="help.html">FAQ</a></li>
<li><a href="pest.html">Pests</a></li>
<li><a href="planner.html">Planner</a></li>
<li><a href="image.html">Discussion</a></li>
<li><a href="language.html">Language</a></li>
<li><a href="region.html">Region</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#login">Login</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="hero-text">
<h1>Welcome to CropSense</h1>
<p>Your guide to smart farming practices</p>
<a href="#crop-recommendations" class="hero-btn">Get Started</a>
</div>
</section>
<!-- Sections for navigation -->
<section id="crop-recommendations" class="section">
<h2>Crop Recommendations</h2>
<p>Get crop recommendations based on your soil type and climate.</p>
<a href="recommendation.html" class="btn">Explore Now</a>
</section>
<section id="weather-updates" class="section section-dark">
<h2>Weather Updates</h2>
<p>Stay updated with real-time weather information.</p>
<a href="#" class="btn">Check Weather</a>
</section>
<!-- Market Insights Section -->
<section id="market" class="section">
<h2>Market Insights</h2>
<p>Find real-time crop prices and market trends to make informed selling decisions.</p>
<a href="market.html" class="btn">View Market Trends</a>
</section>
<section id="soil-health" class="section">
<h2>Soil Health</h2>
<p>Learn how to improve the health of your soil.</p>
</section>
<section id="contact" class="section section-dark">
<h2>Contact Us</h2>
<p>Have any questions? Reach out to us.</p>
</section>
<section id="login" class="section">
<h2>Login</h2>
<p>Login to access personalized recommendations.</p>
<a href="register.html" class="btn">Register</a>
<a href="login.html" class="btn">Login</a>
</section>
<!-- Footer -->
<footer>
<p>© 2024 CropSense - All Rights Reserved</p>
</footer>
<script src="script.js"></script>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>