forked from texas/texplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
64 lines (61 loc) · 2.7 KB
/
about.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link href="app.css" rel="stylesheet">
<style media="screen">
.main {
margin-top: 60px;
}
</style>
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon.ico">
<title>Texplorer</title>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Texplorer</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="./">Home</a></li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="https://docs.google.com/forms/d/1_d-lQQAXGoJ5CrlCSaRVclJ-_bI3K1QlbFsW9GSJrK4/viewform" target="_blank">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container main">
<h2>Texplorer</h2>
<p>
Texplorer is a mobile friendly map that allows a user to see Texas State Historical
Commission historic and architectural markers within a 16 km radius of their location,
and a timeline of key dates from state history. The tool is intended for use by
heritage tourists, students, and others wishing to see nearby historical markers in a
context which combines goelocation and chronology.
</p>
<h2>Team</h2>
<ul>
<li><a href="http://twitter.com/ccrrccrccrr">@ccrrccrccrr</a></li>
<li><a href="http://twitter.com/malev">@malev</a></li>
<li><a href="http://twitter.com/lambesa">@lambesa</a></li>
<li><a href="http://twitter.com/chrisflornce">@chrisflornce</a></li>
</ul>
</div><!-- /.container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="app.js" type="text/javascript"></script>
</body>
</html>