-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
33 lines (33 loc) · 1.1 KB
/
page.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
<!DOCTYPE html>
<html>
<head>
<title>Housing</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" media="screen">
<style>
.container {
max-width: 1000px;
}
body {
background-color: #e6ffff;
color: #33334d;
font-family: "Trebuchet MS",Helvetica,sans-serif
}
</style>
</head>
<body>
<br>
<div class="container">
<center><h1>Building Information</h1>
<br>
<form role="form" method='POST' action='/score'><!-- search box -->
<div class="form-group">
<input type="text" name="url" class="form-control" id="url-box" placeholder="Enter Address" style="max-width: 300px;" autofocus required>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form></center>
</div>
<script src="//code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>