-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
42 lines (40 loc) · 2.92 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
<!DOCTYPE html>
<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>Global Data Mapping</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.0-rc.3/dist/leaflet.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav class='navbar navbar-custom'>
<a class='navbar-brand' href='#'>Visualizing Data Across the Globe</a>
</div>
</nav>
<div class='container-fluid'>
<div id='map'></div>
</div>
<footer>
<div class='footer'>
Made with 🖤 and ☕ by Julia Gajda, Kathleen Graham, and Tamara Najjar | NUCHI 2019
<a href='#' class='footer-link' target='_blank' rel='noopener noreferrer'><img id='gh-icon' src='images/GitHub-Mark-32px.png'></a> | Icons made by
<a class='footer-link' href='https://www.flaticon.com/authors/freepik' target='_blank' rel='noopener noreferrer' title='Freepik'>Freepik</a>,
<a class='footer-link' href='https://www.flaticon.com/authors/smashicons' target='_blank' rel='noopener noreferrer' title='Smashicons'>Smashicons</a>,
<a class='footer-link' href='https://www.flaticon.com/authors/pixel-buddha' target='_blank' rel='noopener noreferrer' title='Pixel Buddha'>Pixel Buddha</a>, and
<a class='footer-link' href='https://www.flaticon.com/authors/photo3idea-studio' target='_blank' rel='noopener noreferrer' title='photo3idea_studio'>photo3idea_studio</a> from <a class='footer-link' href='https://www.flaticon.com/' target='_blank' rel='noopener noreferrer' title='Flaticon'>www.flaticon.com</a>
</div>
</footer>
<script src="https://unpkg.com/leaflet@1.0.0-rc.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="js/winegeojson.js" type="text/javascript"></script>
<script src="js/militarygeojson.js" type="text/javascript"></script>
<script src="js/olympicsgeojson.js" type="text/javascript"></script>
<script src="js/config.js" type="text/javascript"></script>
<script src="js/logic.js" type="text/javascript"></script>
</body>
</html>