-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Jeremy Coulson" />
<title>Index</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/indexstyle2.css" />
<script src="js/jquery.min.js"></script>
<script src="js/jquery.rwdImageMaps.min.js"></script>
<script src="js/outputready.js"></script>
<script src="js/common.js"></script>
<script>
//<![CDATA[
function blinkText() {
$("#taptostart").fadeTo(500, 0).delay(100).fadeTo(2000, 100);
setTimeout("blinkText()", 500);
}
$(document).ready(function() {
blinkText();
});
//]]>
</script>
</head>
<body>
<h1>Emergency Responders Mapbook</h1>
<div id="splashView">
<a href="htmls/county_index_map.html"><img src="img/ColorSeal.png" id="logo" alt="county seal image" /></a>
<br />
<div id="tapStart"><a href="htmls/county_index_map.html" id="taptostart">Tap to Start</a></div>
</div>
<p>
Version 1.0 • Data updated 11/21/2012
<br />
© 2012 County of Frederick, VA
<br />
<a href="http://www.co.frederick.va.us/it-mis">Frederick County IT</a>
•
<a href="http://www.co.frederick.va.us/gis">Frederick County GIS</a>
•
<a href="https://github.com/mrcoulson/Emergency-Responders-Mapbook">Mapbook on GitHub</a>
</p>
</body>
</html>