-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOME.html
218 lines (183 loc) · 8.71 KB
/
HOME.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>Farmer Portal : Home Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="HOME.css">
<link rel="stylesheet" type="text/css" href="REGISTER.css">
<link rel="stylesheet" type="text/css" href="ABOUT.css">
<link rel="stylesheet" type="text/css" href="HOMESlideShow.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body onload="startTime()">
<div id="body">
<a href="HOME.html"><img src="title.png" alt="Logo" height="90px" width="510px"> </a>
<!- NAVIGATION BAR -!>
<ul>
<li><a href="HOME.html">Home</a></li>
<li><a href="ABOUT.html">About Us</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Programmes & Schemes</a>
<div class="dropdown-content">
<a href="http://agricoop.nic.in/farmer-friendly-handbook" target="_blank">Farmer Friendly Handbook</a>
<a href="http://hortharyana.gov.in/en/beneficiary-list-farmers-groups" target="_blank">Benficiaries Report</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Major Crops</a>
<div class="dropdown-content">
<a href="WHEAT.html">Wheat</a>
<a href="MAIZE.html">Maize</a>
<a href="RICE.html">Rice</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Login</a>
<div class="dropdown-content">
<a href="LOGIN1.html">Farmer Login</a>
<a href="LOGIN2.html">Crop Scientist Login</a>
</div>
</li>
</ul>
</div>
<!- ----------------------------SIDEBAR1----------------------- -!>
<div class="sidenav">
<p style="color:white;font-family:Arial">
---------------------------------------------------
Agriculture and Horticulture <br> Corner<br>
---------------------------------------------------</p>
<button class="dropdown-btn">Risk Management
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-container">
<a href="DROUGHT.html">Drought Management</a>
<a href="NADAMS.html">NADAMS</a>
<a href="https://pmfby.gov.in/" target="_blank">Pradhan Mantri Fasal Bima Yojana</a>
</div>
<button class="dropdown-btn">Exports Imports
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-container">
<a href="EXPORT.html">STATISTICS</a>
</div>
<p style="color:white;font-family:Arial">
---------------------------------------------------
Web View<br>--------------------------------------------------</p>
<a href="MAP1.html">Irrigated-Unirrigated Area</a>
<a href="MAP2.html">Agricultural Land</a>
</div>
<script>
var dropdown = document.getElementsByClassName("dropdown-btn");
var i;
for (i = 0; i < dropdown.length; i++) {
dropdown[i].addEventListener("click", function () {
this.classList.toggle("active");
var dropdownContent = this.nextElementSibling;
if (dropdownContent.style.display === "block") {
dropdownContent.style.display = "none";
} else {
dropdownContent.style.display = "block";
}
});
}
</script>
<!- -----------------------------------------SLIDESHOW------------------------------------------------ -!>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="hi-tech-farming-723x334.jpg" style="width:600px;height:400px;">
<div class="text">SCIENTIFIC FARMING</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="CommercialFarming-1.jpg" style="width:600px;height:400px;">
<div class="text">SCIENTIFIC FARMING</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="thinkstockphotos-476743286_10.jpg" style="width:600px;height:400px;">
<div class="text">SCIENTIFIC FARMING</div>
</div>
</div>
<br>
<div id="bullet" style="text-align:center;">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {
slideIndex = 1
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>
<!- -----------------------------------------END OF SLIDESHOW---------------------------------- -!>
<div id="homemap">
<img src="Screenshot_2018-10-24 Farmer Portal Home Page.png" alt="homemap" height="600" width="600" style="border:solid;">
</div>
<!- ----------------------------SIDEBAR2----------------------- -!>
<div class="sidenav1">
<a href="REGISTER.html">New User?<br>Register Here!</a>
<a href="https://pmfby.gov.in/" target="_blank">PMFBY</a>
<a href="DB.html" target="_blank">Data Entry Progress</a>
<a href="https://extensionreforms.dacnet.nic.in/" target="_blank">Extension Forms</a>
<a href="https://dackkms.gov.in/Account/Login.aspx" target="_blank">KKMS</a>
<a href="https://mkisan.gov.in/" target="_blank">mKisan</a>
<a href="https://rkvy.nic.in/reportmenu/reportnavigation.html" target="_blank">RKVY Projects</a>
<a href="SCIENTIST.html">For Crop Scientist Feedback<br>Click Here!</a>
</div>
<!- ----------------------------TIME----------------------- -!>
<div style="position:absolute;top:750px;left:20px;border:solid;border-color:black;height:80px;width:200px;">
<p id="txt" style="position:relative;left:22px;bottom:6px;font-size:30px;color:brown;"></p>
</div>
<script>
function startTime()
{
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById('txt').innerHTML =
h + ":" + m + ":" + s;
var t = setTimeout(startTime, 500);
}
function checkTime(i)
{
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
return i;
}
</script>
<!- ------------------------------FOOTER-------------------------- -!>
<footer style="position: absolute;top:1300px;background-color: black;width:100%;height:150px;">
<i class="fa fa-map-marker" style="font-size:34px;color:antiquewhite;margin-left:20px;margin-top:30px;line-height:0.29;"><span style="font-size:12px;" > SJCE<br> MYSORE </span> </i><br><br>
<i class="fa fa-phone" style="font-size:34px;color:antiquewhite;margin-left:20px;line-height:0.29;"><span style="font-size:12px;" > +91 123 456 7899 </span></i><br><br>
<i class="fa fa-envelope" style="font-size:20px;color:antiquewhite;margin-left:20px;line-height:0.29;"><span style="font-size:12px;" > [email protected] </span></i>
<div style="text-align: center;margin-top:-90px; ">
<a href="HOME.html" style="color:antiquewhite;text-decoration-line: none;">HOME</a>
<a href="ABOUT.html" style="color:antiquewhite;text-decoration-line: none;">ABOUT</a>
<a href="REGISTER.html" style="color:antiquewhite;text-decoration-line: none;">REGISTER</a><br>
<p style="color:antiquewhite">All Rights Reserved © 2018 | <a href="https://en.wikipedia.org/wiki/Privacy_policy" target="_blank" style="color:antiquewhite;text-decoration-line: none;"> Privacy Policy</a> | <a href="https://en.wikipedia.org/wiki/Terms_of_service" target="_blank" style="color:antiquewhite;text-decoration-line: none;"> Terms of Service</a></p>
</div>
</footer>
<!- ------------------------------END OF FOOTER-------------------------- -!>
</div>
</body>
</html>