-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (59 loc) · 2.63 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
59
60
61
62
<!DOCTYPE html 5>
<html lang="en">
<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">
<title>LETS DO THIS!!!!!!!!!!!</title>
<link rel="stylesheet" href="assets/css/bulma.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script>
<script src="https://tiles.unwiredmaps.com/js/leaflet-unwired.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</head>
<body>
<section class="hero is-large is-primary is-bold has-backgroud-green">
<div class="hero-head">
<div class="head">
<h1 class="title is-bold is-size-1">
Plan and Go!
</h1>
<h2 class="subtitle is-small is-size-4">
Pick a place to visit below and find the best deals nearby!
</h2>
<div class="level">
<input class="input is-rounded is-loading" id="user-input" type="text"
placeholder="Where would you like to go?">
<button class="button is-rounded" id="search-attraction">Search</button>
</div>
</div>
<div class="progressbar">
</div>
</div>
</section>
<div class="container">
<div class="columns">
<div class="column is-8">
<div id="map"></div>
</div>
<div class="title is-4 is-vertical">
<div class="title is-child box">
<div class="content">
<p class="title">Search Results</p>
<p class="subtitle" id="search-result"></p>
</div>
</div>
</div>
</div>
</div>
<script src="assets/javascript/app.js"></script>
</body>
</html>