forked from astryker18/team-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.63 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Team Assignment</title>
<meta charset="utf-8" />
<link type="text/css" rel="stylesheet" href="dist/css/bootstrap.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- bootstrap navigation bar, format taken from bootstrap documentation-->
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- unneeded, but preserving for posterity
<div class="navbar-header">
<a class="navbar-brand" href="#">WebSiteName</a>
</div>
-->
<ul class="nav navbar-nav">
<li class = "active"><a href="index.html">Main page</a></li>
<li><a href="ages/index.html">Execution ages</a></li>
<li><a href="reasons/index.html">Reasons for leaving death row</a></li>
<li><a href="timeline/index.html">Execution timeline</a></li>
<li><a href="wordcloud/index.html">Last statements word cloud</a></li>
</ul>
</div>
</nav>
<h1>Main Page</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<a href = "ages/index.html"><h2>Ages of people on death row</h2></a>
<a href = "reasons/index.html"><h2>Reasons people left death row</h2></a>
<a href = "timeline/index.html"><h2>Timeline of executions by year</h2></a>
<a href = "wordcloud/index.html"><h2>Word cloud generated from inmates' last words</h2></a>
</div>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="js/jquery-3.1.0.min.js"></script>
<script src="dist/js/bootstrap.js"></script>
</body>
</html>