-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (119 loc) · 4.04 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/style.css" />
<title>Rice Yield Prediction</title>
</head>
<body>
<nav class="navbar">
<h3>Rice Yield Prediction</h3>
<ul>
<li><a href="index.html">Rice Yield</a></li>
<li><a href="weather.html">Weather</a></li>
<li><a href="ndvi.html">NDVI</a></li>
<li><a href="validation.html">Validate</a></li>
</ul>
</nav>
<article>
<div class="grid-container">
<form action="" class="grid-item grid-item-1">
<div class="form-group form-item-1">
<label for="district">District</label>
<select class="select-css" id="dist" name="district">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
</div>
<div class="form-group form-item-2">
<label for="year">Year</label>
<input type="text" id="year" name="year" placeholder="Enter Year" />
</div>
<div class="form-group form-item-3">
<label for="land">Land Area (Hectares)</label>
<input
type="text"
id="land"
name="land"
placeholder="Enter Land Area"
/>
</div>
<input type="button" class="form-item-4 btn" value="Predict" />
<div class="form-group form-item-5">
<label for="type">Season type</label>
<select class="select-css" id="type" name="type">
<option value="Aus">Aus</option>
<option value="Aman">Aman</option>
<option value="Boro">Boro</option>
</select>
</div>
</form>
<div class="grid-item-3"> <h2>Result</h2> </div>
<div id="loading"></div>
<div class="grid-item grid-item-2 hidden">
<table class="card card-1">
<tr>
<td>District</td>
<td colspan="2" class="location">Dhaka</td>
</tr>
<tr>
<td rowspan="2">Geo Location</td>
<td>Latitude</td>
<td >Longitude</td>
</tr>
<tr>
<td class="long">190 deg</td>
<td class="lat"> deg</td>
</tr>
</table>
<table class="card card-2">
<tr>
<td>Rain</td>
<td class="rain">3434 deg</td>
</tr>
<tr>
<td>Relative Humidity</td>
<td class="rel-hum">34 deg</td>
</tr>
<tr>
<td>Cloud Coverage</td>
<td class="cloud">45 deg</td>
</tr>
<tr>
<td>Average Sunshine</td>
<td class="sun">43545 deg</td>
</tr>
<tr>
<td>Average Temperature</td>
<td class="temp">456 deg</td>
</tr>
<tr>
<td>NDVI</td>
<td class="ndvi">0.458</td>
</tr>
</table>
<table class="card card-3">
<tr>
<td>Land Area</td>
<td class="area">100 hectares</td>
</tr>
<tr>
<td>Type</td>
<td class="type">Aman</td>
</tr>
<tr>
<td>Predicted Yield</td>
<td class="pred">20000 m.ton</td>
</tr>
</table>
</div>
</div>
</article>
<script src="js/template.js"></script>
<script src="js/script.js"></script>
</body>
</html>