-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
36 lines (36 loc) · 1.1 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="widget-styles.css">
</head>
<body>
<div id="container">
<div id="widget">
<div id='header'>
<h1>BIKES THEFTS WHERE YOU LIVE</h1>
<p>Type to select the local authority in which you live and hit the submit button.<p>
</div>
<div id='search'>
<input id="auto" size="25"><br>
<button id="submit">Submit</button><p id="source">Source: Home Office</p>
</div>
</div>
<div id="scale-container">
<h3 id="scale-header"></h3>
<div id="scale"></div>
</div>
<div id='response'>
<p id="response-text"></p>
</div>
<div id ="chart-container">
<h3 id="chart-header"></h3>
<div class='chart'></div>
</div>
</div>
<script type="text/javascript" src="widget-script.js"></script>
</body>
</html>