-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="https://kit.fontawesome.com/faadef49c2.js"></script>
<title>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">
<i class="fas fa-flag-usa"></i> State Capital Lookup
</h3>
<div class="form-group">
<input
type="text"
class="form-control form-control-lg search"
placeholder="Enter state name or abbreviations...">
</div>
<div class="match-list"></div>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>