-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/ba6025e370.js"
crossorigin="anonymous"
></script>
<link
href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.0/sketchy/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-NkI/Nlr1DZ5rUXWWdnuZb97FQRgCCcwC66DC+HUCY0oVx6BgBHUfPcwL1vwp93JZ"
crossorigin="anonymous"
/>
<title>India State Info</title>
</head>
<body style="background-color: black;">
<div class="container mt-5">
<div class="row">
<div class="col-md-6 m-auto">
<h1 class="text-center mb-3 text-success">
<i class="fa fa-flag"> </i>
India State Details
</h3>
<div class="form-group">
<input type="text" class="form-control form-control-lg mt-2" id="search" placeholder="Enter state name or state code">
</div>
<div id="match-list">
</div>
</div>
</div>
</div>
<script src="./js/main.js"></script>
</body>
</html>