-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
executable file
·37 lines (30 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Leftlet.js/Mapbox.js Demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!-- Mapbox Styles -->
<link href='//api.tiles.mapbox.com/mapbox.js/v2.1.9/mapbox.css' rel='stylesheet' />
<!-- Site Styles -->
<link rel="stylesheet" href="bower_components/normalize.css/normalize.css">
<link rel="stylesheet" href="assets/styles/main.css">
</head>
<body>
<div class="container">
<h1>Rob Lowe!!!</h1>
</div>
<div id="map"></div>
<!-- jQuery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="bower_components/jquery/dist/jquery.min.js"><\/script>')</script>
<!-- Mapbox JS -->
<script src='//api.tiles.mapbox.com/mapbox.js/v2.1.9/mapbox.js'></script>
<!-- Site JS -->
<script src="assets/scripts/main.js"></script>
</body>
</html>