-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.12 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="https://kit.fontawesome.com/e1477a8e42.js" crossorigin="anonymous"></script>
<title>Indian State Capital Lookup</title>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-6 m-auto">
<h3 class="text-center mb-3">
<img src="data/india.svg" alt="india-flag" width="60px" height="60px" class="mb-2">
Indian States Lookup
</h3>
<div class="form-group">
<input type="text" class="form-control form-control-lg" id="search"
placeholder="Enter State Name or Abbreviation...">
</div>
<div id="match-list">
</div>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>