-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Erik S. V. Jansson">
<meta name="description" content="Web application
for investigating meteorite landing using cluster
analysis and geovisualization.">
<meta name="keywords" content="meteorite,landings,
cluster,analysis,geovisualization,visualizations">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Meteorite Landings</title>
<!-- Copyright © 2017 Erik S. Vasconcelos Jansson licensed under a "The MIT License" -->
<!-- "Meteorite Impact" by Oliviu Stoian from the Noun Project distributed under CC3 -->
<!-- "Meteorite Landings" by The Meteoritical Society+NASA falls under public domain -->
<!-- Pre-generated settings for supporting many different platforms and device sizes -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" href="assets/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="assets/favicon/manifest.json">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/favicon/favicon.ico">
<meta name="apple-mobile-web-app-title" content="Meteorite Landings">
<meta name="application-name" content="Meteorite Landings">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Bloats our application with "cancer" -->
<script src="libraries/jquery.js"> </script>
<script src="libraries/d3.js"> </script>
<script src="libraries/topojson.js"></script>
<!-- Loads in the base stylesheet and script -->
<link rel="stylesheet" href="sheets/style.css">
<script src="scripts/spawn.js">notice()</script>
</head>
<body onload="notice(); main();">
<div id="full-display"></div>
</body>
</html>