-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (98 loc) · 3.17 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<title>Climb the World</title>
<link rel="stylesheet" href="css/desktop.css">
<!-- Media query for narrow browser width -->
<link rel="stylesheet" media="only screen and (max-width: 480px)" href="css/mobile.css">
<!-- Media query for medium browser width -->
<link rel="stylesheet" media="only screen and (min-width: 481px) and (max-width: 960px)" href="css/tablet.css">
<!-- Media query for full browser width -->
<link rel="stylesheet" media="only screen and (min-width: 961px)" href="css/desktop.css">
<!-- Prevent smartphones from scaling pages down -->
<meta name="viewport" content="initial-scale=1">
</head>
<body>
<div id="lightbox">
<div id="lbcontentArea">
<div id="closeBtn"> </div>
<div id="lbcontent">
</div>
</div>
</div>
<div class="banner">
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="https://www.mountainproject.com/scripts/WhatsNew?daysold=7">new climbs</a></li>
<li><a href="https://www.mountainproject.com/forums/">forum</a></li>
<li><a href="https://www.mountainproject.com/scripts/Signup">sign up</a></li>
<li><a href="login.html">log in</a></li>
</ul>
</nav>
</div>
<div class="heading">
<p id="title">FIND ANY CLIMB AROUND THE WORLD
</p>
</div>
<input type="button" id="lbTrigger" value="click for box">
<div class="maps">
<!-- <script src='https://maps.googleapis.com/maps/api/js?v=3.exp'></script>
<div id="googleMap">
<div id='gmap_canvas'></div>
</div>
<script type='text/javascript'>function init_map(){var myOptions = {zoom:10,center:new google.maps.LatLng(31.920385,-106.03858760000003),mapTypeId: google.maps.MapTypeId.TERRAIN};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(31.920385,-106.03858760000003)});infowindow = new google.maps.InfoWindow({content:'<strong>Bouldering</strong><br>Hueco Tanks<br>'});google.maps.event.addListener(marker, 'click', function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);
</script> -->
</div>
<div class="forms">
<h2>
FIND YOUR CLIMB
</h2>
<form>
<table border ="0">
<tr>
<td>
LOCATION
</td>
<td>
<input type="text" placeholder="Where do you want to go?" required>
</td>
</tr>
<tr>
<td>
TYPE
</td>
<td>
<select>
<option>Boulder</option>
<option>TR</option>
<option>Lead</option>
<option>Trad</option>
<option>Hike</option>
</select>
</td>
</tr>
<tr>
<td>
DIFFICULTY
</td>
<td>
<select>
<option>Beginnner</option>
<option>Intermediate</option>
<option>Advanced</option>
</select>
</td>
</tr>
<tr>
<td colspan="2">
<input type="button" class="butt" value="Go!">
</td>
</tr>
</table>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<script src="js/interactive.js"></script>
</body>
</html>