-
Notifications
You must be signed in to change notification settings - Fork 0
/
msp.html
executable file
·121 lines (120 loc) · 3.7 KB
/
msp.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
<html>
<head>
<title>MSP | Jai Kisan</title>
<style>
.container{
width: 100%;
background-color: #3c8dbc;
padding: 1px;
}
.cont{
width: 100%;
background-color: #AEDF22;
padding: 1px;
}
.button {
background-color: #EB8112;
border: none;
color: white;
padding: 2px 4px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer; }
footer{
background-color: black;
border-width: 100%;
height: 50px;
color: white;
padding: 1px;
}
</style>
</head>
<body>
<div class="container">
<img src="img/logo.PNG" style="margin-left: 2px; margin-top: 2px;" width="10%" height="12%">
<p align="center" style="margin-top: -70px; font-size: 30px; color: white;"><b>JAI KISAN<br><span style="font-size: 22px;">Making farming great again..!!</b></span></p>
</div>
<div class="cont">
<p align="center" style="font-size: 18px;"><b><a href="index.html" style="color:black;text-decoration-line: none;">Home</a>             <a href="schemes.html" style="color:black;text-decoration-line: none;">Schemes</a>             <a href="msp.html" style="color:black;text-decoration-line: none;">Minimum Sale Price</a>            <a href="contact.html" style="color:black;text-decoration-line: none;">Contact</a>             <a href="shc.html" style="color:black;text-decoration-line: none;">Soil Health Card</a>            <a href="login.html" style="color:black;text-decoration-line: none;">Login</a>             <a href="register.html" style="color:black;text-decoration-line: none;">Register</a>             <a href="aboutus.html" style="color:black;text-decoration-line: none;">About Us</a>             <a href="contactus.html" style="color:black;text-decoration-line: none;">Contact Us</a>          <button onclick="goBack()" class="button">Go Back</button></b></p>
</div>
<h3 align="center"><b><u>Minimum Sale Price(MSP) in rupees</u></b></h3>
<br>
<table border="2" cellspacing="2" cellpadding="2" bordercolor="red" align="center" width="700" height="200">
<tr>
<th></th>
<th>2013-14</th>
<th>2014-15</th>
<th>2015-16</th>
<th>2016-17</th>
<th>2017-18</th>
<th>2018-19</th>
</tr>
<tr>
<td>Cotton</td>
<td>1310</td>
<td>1360</td>
<td>1410</td>
<td>1470</td>
<td>1550</td>
<td>1750</td>
</tr>
<tr>
<td>paddy</td>
<td>1310</td>
<td>1360</td>
<td>1410</td>
<td>1470</td>
<td>1550</td>
<td>1750</td>
</tr>
<tr>
<td>Jowar</td>
<td>1520</td>
<td>1550</td>
<td>1590</td>
<td>1650</td>
<td>1725</td>
<td>2450</td>
</tr>
<tr>
<td>Bajra</td>
<td>1250</td>
<td>1275</td>
<td>1330</td>
<td>1425</td>
<td>1950</td>
<td>2000</td>
</tr>
<tr>
<td>Wheat</td>
<td>1350</td>
<td>1400</td>
<td>1450</td>
<td>1525</td>
<td>1625</td>
<td>1735</td>
</tr>
</table>
<br>
<br>
<br>
<br>
<hr>
<marquee style="font-size: 20px"><b>Top Stories::JAI KISAN is shaping into new standards of life for farmers.</b></marquee>
<hr>
<a href="facebook.com"><img src="img/fb.jpg" style="height: 10%;width:10%; margin-left: 25%;"></a>
<a href="gmail.com"><img src="img/gmail.png" style="height: 10%;width:5%; margin-left: 180px;"></a>
<a href="twitter"><img src="img/twitter.png" style="height: 10%;width:5%; margin-left: 220px;"></a>
<hr>
<script type="text/javascript">
function goBack() {
window.history.back();
}
</script>
<footer class="foo">
<p style="margin-left: 10px;"> © RGUKT BASAR <SPAN style="margin-left: 920px;">Developed by: E3-CSE</SPAN></p>
</footer>
</body>
</html>