-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
38 lines (31 loc) · 1.44 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- Import css styles -->
<link href="styles.css" rel="stylesheet">
<title>Postcode Search</title>
</head>
<body>
<main class="form-search">
<form id="form">
<h1 class="h3 mb-3 fw-300 text-uppercase">Search Postcode & What's Nearby</h1>
<input type="text" id="search" class="form-control" placeholder="Enter Postcode Here" required autofocus>
<button class="w-100 btn btn-lg btn-primary mt-2 flex-row align-content-end" type="submit">Search</button>
</form>
<div class="column" id="resultPostcode"></div>
<div class="column" id="resultCountry"></div>
<div class="column" id="resultRegion"></div>
<div id="backButton"></div>
</main>
<!-- Import bootstrap script -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<!-- Import javascript -->
<script src="postcode.js"></script>
</body>
</html>