-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (63 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAHAY - Empowering Farmers</title>
<link rel="stylesheet" href="styles2.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<a href="/" class="logo-link">
<img src="logo(1).png" alt="SAHAY Icon" class="icon-logo">
<h1>SAHAY</h1>
</a>
<nav class="header-right">
<ul>
<li><a href="forum.html">Forum</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.html" class="login-button">Login</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section id="hero-banner">
<div class="slideshow-container">
<div class="slide fade" style="background-image: url('drought-1560519061.jpg')">
<div class="banner-content">
<h2>Combating Drought</h2>
<p>Helping farmers navigate the challenges of drought and water scarcity.</p>
<a href="https://www.indiatvnews.com/news/india-uttar-pradesh-stares-drought-like-situation-527230"
class="btn" target="_blank">Learn More</a>
</div>
</div>
<div class="slide fade"
style="background-image: url('unseasonal-hindustan-outskirts-november-satyabrata-nivrutti-bhugawon_78fec178-f404-11ea-a202-bb30b6351b83-706658771.jpg')">
<div class="banner-content">
<h2>Unseasonal Rains Impact</h2>
<p>Understanding the devastating effects of unseasonal rains on farmers.</p>
<a href="https://www.hindustantimes.com/india-news/extreme-rains-lead-to-more-rural-farmer-suicides-than-droughts-study/story-Pk9BZ6A5QZGtuny9q5qJMO.html"
class="btn" target="_blank">Read More</a>
</div>
</div>
<div class="slide fade" style="background-image: url('farming-1649767301.jpg')">
<div class="banner-content">
<h2>Pest Control and Management</h2>
<p>Effective strategies to combat pests and protect valuable crops.</p>
<a href="https://theecologist.org/2014/sep/02/farm-pests-global-advance-threatens-food-security"
class="btn" target="_blank">Learn More</a>
</div>
</div>
</div>
<div class="navigation-dots">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</section>
<script src="script.js"></script>
</body>
</html>