-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (48 loc) · 1.96 KB
/
index.html
File metadata and controls
62 lines (48 loc) · 1.96 KB
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>
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Quick Tour Guide</h1>
</div>
</div>
<div class="row">
<input type="text" id="city-input" class="form-control" id="input" placeholder="Welcome to Quick Tour Guide!, Please Enter City Name" />
</div>
<div class="row">
<div class="col-md-12">
<div id="map">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="title invisible" id="image_header">Pictures of </h3>
</div>
</div>
<div class="row">
<div id="photos">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="title invisible" id="video_header">Videos related to </h3>
</div>
</div>
<div class="row">
<div id="youtube">
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<script src="https://apis.google.com/js/client.js?onload=onClientLoad"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLeay-3D4F8f2RnSTncDkF5tOxm0naI_4&libraries=places&callback=initAutocomplete" type="text/javascript"></script>
</body>
</html>