-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
99 lines (77 loc) · 4.05 KB
/
about.html
File metadata and controls
99 lines (77 loc) · 4.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE HTML>
<html>
<head>
<meta charset = 'utf8'>
<title>Template - About</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.1/d3.min.js"></script>
<!-- Begin Mapbox requests -->
<!-- end Mapbox requests -->
<!-- begin project-specific STATIC asset calls.
page-specific calls that require ready DOM elements called at end of <body>.
may change that practice later. for now we can avoid listening for window.load, document.ready, etc -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Fjalla+One|Exo:400,600|Ropa+Sans' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Exo" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=PT+Sans+Narrow|Arimo|Dosis|Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/overlay.css">
<link rel="stylesheet" type="text/css" href="css/tachyons.css">
<link rel="stylesheet" type="text/css" href="css/mapbox-geocoder.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- end project-specific asset calls -->
</head>
<body>
<!--Navbar-->
<div>
<nav class="navbar navbar-fixed-top" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<div class="navbar-brand"><a href="index.html" class="header1">Title</a></div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="nav"> <a href="index.html" class="header1">Map</a></li>
<li class="nav"> <a href="data.html" class="header1">Data</a></li>
<li class="nav"> <a href="about.html" class="header1">About</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
</div>
<!-- jumbotron---->
<div class="jumbotron">
<h1> Title </h1>
</div>
<!-- containers --->
<div class="col-md-12 text-center" class="ccusa_container">
<div class="col-md-1 text-center"></div>
<div class="col-md-3 text-center">
<p align="center"><center><img src='./static/dkdc.png' style="height: 70px"> </img></center>
<a href="" target="_blank"><h3>Item</h3></a>
Lorem ipsum dolor sit amet, populo putant labitur at nam. Per molestie sadipscing conclusionemque at. Ex mel soleat diceret petentium. Modo doctus cum cu, in singulis praesent mei.
</div>
<div class="col-md-4 text-center">
<p align="center"><center><img src='./static/dkdc.png' style="height: 70px"> </img></center>
<a href="" target="_blank"><h3>Item</h3></a>
Lorem ipsum dolor sit amet, populo putant labitur at nam. Per molestie sadipscing conclusionemque at. Ex mel soleat diceret petentium. Modo doctus cum cu, in singulis praesent mei.
</div>
<div class="col-md-3 text-center">
<p align="center"><center><img src='./static/dkdc.png' style="height: 70px"> </img></center>
<a href="" target="_blank"><h3>Item</h3></a>
Lorem ipsum dolor sit amet, populo putant labitur at nam. Per molestie sadipscing conclusionemque at. Ex mel soleat diceret petentium. Modo doctus cum cu, in singulis praesent mei.
</div>
<div class="col-md-1 text-center"></div>
</div>
<!--footer-->
<div class="footer">
<p>Footer information goes here.</p>
</div>
</body>
</html>