-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeedCorporations.html
137 lines (121 loc) · 5.66 KB
/
SeedCorporations.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
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Seeds India</title>
<style>
body
{
padding-left: 50px;
padding-right: 50px;
background-color: rgb(200, 218, 233);
}
</style>
</head>
<body>
<h1>State seed Corporation</h1>
<div class="seed_corporation">
<table style="padding: 15px;">
<tbody>
<tr style="color: rgb(90, 165, 15);">
<th>S.No</th>
<th>State</th>
<th>Corporation</th>
<th>Website</th>
</tr>
<tr>
<td>1.</td>
<td>Andhra Pradesh</td>
<td>Andhra Pradesh State Seeds Devolopment Corporation Ltd</td>
<td><a target="_blank" href="https://apseeds.ap.gov.in/">https://apseeds.ap.gov.in/</a></td>
</tr>
<tr>
<td>2.</td>
<td>Assam</td>
<td>Assam Seeds Corporation Limited </td>
<td><a target="_blank" href="https://ascltd.assam.gov.in/">https://ascltd.assam.gov.in/</a></td>
</tr>
<tr>
<td>3.</td>
<td>Bihar </td>
<td>Bihar Rajya Beej Nigam Limited </td>
<td><a target="_blank" href="https://brbn.co.in/">https://brbn.co.in/</a></td>
</tr>
<tr>
<td>4.</td>
<td>Chhattisgarh</td>
<td>Chhattisgarh State Seeds And Agricultural Development Corporation Limited</td>
<td><a target="_blank" href="http://agriportal.cg.nic.in/beejnigam/BeejHi/">http://agriportal.cg.nic.in/beejnigam/BeejHi/</a></td>
</tr>
<tr>
<td>5.</td>
<td>Gujarat </td>
<td>Gujarat State Seed Corporation </td>
<td><a target="_blank" href="http://www.gurabini.com/">http://www.gurabini.com/</a></td>
</tr>
<tr>
<td>6.</td>
<td>Haryana </td>
<td>Haryana Seeds Development Corporation /</td>
<td><a target="_blank" href="http://haryanaseeds.org.in">http://haryanaseeds.org.in</a></td>
</tr>
<tr>
<td>7.</td>
<td>Karnataka</td>
<td>Karnataka State Seeds Corporation Limited </td>
<td><a target="_blank" href="https://ksscl.karnataka.gov.in/">https://ksscl.karnataka.gov.in/</a></td>
</tr>
<tr>
<td>8.</td>
<td>Madhya Pradesh</td>
<td>Madhya Pradesh Rajya Beej Evam Farm Vikas Nigam </td>
<td><a target="_blank" href="http://mpssfdc.mp.gov.in/">http://mpssfdc.mp.gov.in/</a></td>
</tr>
<tr>
<td>9.</td>
<td>Maharashtra </td>
<td>Maharashtra State Seed Corporation Ltd </td>
<td><a target="_blank" href="https://www.mahabeej.com/">https://www.mahabeej.com/</a></td>
</tr>
<tr>
<td>10.</td>
<td>Odisha </td>
<td>Odisha State Seed Corporation Ltd </td>
<td><a target="_blank" href="https://ossc.nic.in/">https://ossc.nic.in/</a></td>
</tr>
<tr>
<td>11.</td>
<td>Rajasthan </td>
<td>Rajasthan State Seeds Corporation Limited </td>
<td><a target="_blank" href="http://rajseeds.org/">http://rajseeds.org/</a></td>
</tr>
<tr>
<td>12.</td>
<td>Telangana</td>
<td>Telangana State Seeds Development Corporations Ltd</td>
<td><a target="_blank" href="http://www.tssdcl.org/">http://www.tssdcl.org/</a></td>
</tr>
<tr>
<td>13.</td>
<td>Uttar Pradesh </td>
<td>Uttar Pradesh Beej Vikas Nigam</td>
<td><a target="_blank" href="https://upbvn.org/">https://upbvn.org/</a></td>
</tr>
<tr>
<td>14.</td>
<td>Uttarakhand </td>
<td>Uttarakhand Seeds & Tarai Development Corporation Limited </td>
<td><a target="_blank" href="https://www.pantnagarseeds.com/">https://www.pantnagarseeds.com/</a></td>
</tr>
<tr>
<td>15.</td>
<td>West Bengal</td>
<td>West Bengal State Seeds Corporations. Ltd.</td>
<td><a target="_blank" href="https://www.wbsscl.com/">https://www.wbsscl.com/</a></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>