-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Near by</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="src/app.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<style>
body{
font-family: 'Lato', sans-serif;
}
button{
border: 0;
background: cadetblue;
color: white;
border-radius: 5px;
padding: 5px;
}
input{
border: cadetblue 1px solid;
border-radius: 5px;
padding: 5px;
}
</style>
</head>
<body>
<div id="searchForWrapper">
<label>Please insert location name</label>
<input id="search" name="search" value="london eye"/>
<button id="searchGo" value="Search"> Search </button>
</div>
<div id="resultWrapper">
<div id="result">
<div id="title"></div>
<div id="list"></div>
</div>
<div id="resultJson">
</div>
</div>
</body>
</html>