-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<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="icon"
type="image/svg+xml"
href="https://img.ideal-postcodes.co.uk/favicon.svg"
/>
<link
rel="icon"
type="image/x-icon"
href="https://img.ideal-postcodes.co.uk/favicon.ico"
/>
<link
rel="stylesheet"
type="text/css"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
/>
<title>Address Finder</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6 col-md-offset-3">
<h5 id="title">Ideal Postcodes Address Finder</h5>
<hr />
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6 col-md-offset-3">
<div class="form-group">
<label>Address Search</label>
<input type="text" class="form-control" id="input" />
</div>
<hr />
</div>
<div class="col-xs-12 col-md-6 col-md-offset-3">
<div class="form-group">
<label>Line 1</label>
<input type="text" class="form-control" id="line_1" />
<label>Line 2</label>
<input type="text" class="form-control" id="line_2" />
<label>Line 3</label>
<input type="text" class="form-control" id="line_3" />
<label>Post Town</label>
<input type="text" class="form-control" id="post_town" />
<label>Postcode</label>
<input type="text" class="form-control" id="postcode" />
</div>
</div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>