-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 977 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The MusicMap Globe</title>
<link href="http://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/globe.css">
</head>
<body>
<div id="globe"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/threejs/r67/three.min.js"></script>
<script type="text/javascript" src="js/data/coast.js"></script>
<script type="text/javascript" src="js/data/country.js"></script>
<script type="text/javascript" src="js/data/location.js"></script>
<script type="text/javascript" src="js/data/world.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/globe.js"></script>
</body>
</html>