-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·84 lines (73 loc) · 2.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang ="en">
<head>
<meta charset="utf-8">
<title>Travel The World</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type = "text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<script type = "text/javascript" src="js/raphael.js"></script>
<script type = "text/javascript" src="js/mapael.js"></script>
<script type = "text/javascript" src="js/mapaelworldmap.js"></script>
<script src="https://cdn.firebase.com/js/client/2.4.1/firebase.js"></script>
</head>
<body>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<h1 class="text-center mainTitle">American-Friendly Travel Destinations</h1>
<div class="mapcontainer">
<div class="map">
<span>Alternative content for the map</span>
</div>
<div class="areaLegend">
<span>Alternative content for the legend</span>
</div>
<div class="plotLegend">
<span></span>
</div>
</div>
</div>
</div>
</div>
<!-- INPUT AND DISPLAY OF USER COMMENTS -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1" id = "userComments">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div id="commentTable">
</div>
</div>
</div>
</div>
<!-- DISPLAY OF GOOGLE APIS -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div id="searchNews">
</div>
</div>
</div>
</div>
<div id="modal" class="theModal">
<p id="modal-text">Please fill out every field.</p>
</div>
<!-- Fickr API -->
<div class="heading text-center">
<h1 id="hOne">Bonus: Click on a country to view commentary, news, and images from there!</h1>
</div>
<div class="row text-center center-block" id="photos">
</div>
<!-- Close Flickr API -->
<script src="js/main.js"></script>
</body>
</html>