-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NYC Subway Photo Map</title>
<script text/javascript src="js/jquery-2.0.3.min.js"></script>
<script text/javascript src="js/stationsFinal.js"></script>
<script text/javascript src="js/jquery.prettyPhoto.js"></script>
<script text/javascript src="js/jquery.rwdImageMaps.min.js"></script>
<script text/javascript src="js/picMap.js"></script>
<link rel=stylesheet href="css/prettyPhoto.css" type="text/css"/>
</head>
<body>
<header id="head">
<h1>Click any point on the map to see photo(s) of that station</h1><br>
</header>
<main>
<section id="contain-www">
<img src="images/map_seamless2.jpg" width="3072" height="4608" border="0" usemap="#subway"/>
<map id="subway" name="subway">
<area shape="rect" coords="3072,4608,3072,4608" />
</map>
</section>
</main>
<footer><h2>All photos are 100% original</h2>
<h4>Developed by Be Open Source</h4></footer>
</body>
</html>