-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
58 lines (51 loc) · 2.27 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="ClearType" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Title, desc -->
<title>Mermaid Finder</title>
<meta name="description" content="">
<!-- Styles -->
<link type="text/css" rel="stylesheet/less" href="css/styles.less">
<link type="text/css" rel="stylesheet/less" href="css/mediaq.less">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<link rel="stylesheet" href="css/L.Control.Sidebar.css" />
<link rel="stylesheet" href="css/map.css">
<!-- LESS CSS -->
<script type="text/javascript" src="js/less-1.7.3.min.js"></script>
</head>
<body>
<wrapper>
<header>
<div id="search">
<input id="search-box" type="text" name="firstname" placeholder="Search mermaids or artists"/>
<input id="gobutton" type="submit" value="Search!" />
</div>
</header>
<div class='custom-popup' id="largemap"></div>
<div id="moreinfo-container">
<div id="moreinfo">
<img src="images/thumb.png" alt="mermaid"/>
<div class="info">
<h3 class="title">"Jewel of Norfolk"</h3>
<h3 class="artist-name">by Bess Decker</h3>
<h3 class="sponsor-label">Sponsor:</h3>
<h3 class="sponsor-name">Decker, Cardon, Weintraub and Neskis</h3>
</div>
<div class='custom-popup' id="largemap"></div>
<div id="address-container">
<h3 class="address">109 East Main St. Norfolk, VA 23510</h3>
<input id="directionbutton" type="submit" value="Directions" />
</div>
</div><!--/moreinfo-->
</div><!--/moreinfo-container-->
</wrapper>
</body>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script> <script src="js/jquery-2.1.1.min.js"></script>
<script src="js/app.js"></script>
</html>