-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfs.html
26 lines (26 loc) · 968 Bytes
/
fs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zero Hunger Initiative</title>
<link rel="stylesheet" href="fs.css">
<script defer src="fs.js"></script>
</head>
<body>
<div id="food-schemes" class="content-section">
<h1>Food Schemes</h1>
<label for="state-filter">Filter by State:</label>
<select id="state-filter">
<option value="all">All States</option>
<option value="central">Central Government Schemes</option>
<option value="tamil-nadu">Tamil Nadu</option>
<option value="andhra-pradesh">Andhra Pradesh</option>
<option value="kerala">Kerala</option>
<option value="rajasthan">Rajasthan</option>
<option value="odisha">Odisha</option>
</select>
<div id="scheme-list" class="scheme-list"></div>
</div>
</body>
</html>