-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.14 KB
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>
<head>
<title>Airline Safety - Narrative Visualization</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Airline Safety - Narrative Visualization</h1>
<div class="overview">
<!-- Overview content will be generated by scene1.js -->
</div>
<div class="scenes">
<h2>Scenes:</h2>
<p>
Please select Scene #2 to get started with the visualization. <br />
You have the option to return to this page by clicking the "Go to Home
Page" button in each Scene.
</p>
<ul>
<li>
<a href="scene2.html">Scene 2: Safety Records from 1985-1999</a>
</li>
<li>
<a href="scene3.html">Scene 3: Safety Records from 2000-2014</a>
</li>
<li>
<a href="scene4.html"
>Scene 4: Comparing Safety Records from 1985-1999 to 2000-2014</a
>
</li>
</ul>
</div>
</div>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="scene1.js"></script>
</body>
</html>