-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (37 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="images/icon.png">
<script src="lib/d3.v4.min.js"></script>
<style>
@import 'css/panel.css';
@import 'css/main.css';
</style>
<title>MC3</title>
</head>
<body>
<div class="header">
<a>Earthquake Situational Analytics</a>
<div class="header-right">
<a class="active" href="index.html">Demo</a>
<a href="video.html" target="_blank">Video</a>
<a href="./TTU-Nguyen-MC3/index.htm" target="_blank">Report</a>
</div>
</div>
<div id="loading">
<img id="loadingImage" height="130" width="150"
src="images/spinner-event.gif" alt="Loading..."/>
</div>
<div id="mainContent"></div>
<script src="js/source.js"></script>
<script src="lib/wordstream.js"></script>
<script src="js/panel.js"></script>
<script src="js/main.js"></script>
<script src="js/wsTooltip.js"></script>
<script src="js/user.js"></script>
<script src="js/map.js"></script>
<script src="js/network.js"></script>
<script src="js/userTooltip.js"></script>
</body>
</html>