-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (93 loc) · 4.84 KB
/
Copy pathindex.html
File metadata and controls
140 lines (93 loc) · 4.84 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>Ski Project</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,700,600italic,700italic,800,800italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header>
<div id="ribbon_left">
<div> <img src="images/filter.png" id="filter_image"> </div>
<div></div>
</div>
<h1>Where Should I Ski?</h1>
<div id="region_selector">
<form action="#" method="post">
<select name="region">
<option value="global">Show All Regions</option>
<option value="northAmerica">North America</option>
<option value="southAmerica">South America</option>
<option value="europe">Europe</option>
<option value="asia">Asia</option>
<option value="australia">Australia</option>
</select>
</form>
</div>
</header>
<div id="middle_container">
<div id="filter_pane">
<h2>How much do you care about....</h2>
<form action="#" method="post">
<div id="slider_container">
<div class="filter_row" id="cost.png">
<div class="icons">
<img src="images/cost.png" title="Cost">
</div>
<div class="slider_wrapper">
<input type="range" name="filters" id="cost" value="0" min="0" max="5" step="1">
</div>
<a href="#" class="remove_wrapper"><img class="remove" src="images/remove.png"></a>
</div>
<div class="filter_row" id="snow.png">
<div class="icons">
<img src="images/snow.png" title="Snow Quality">
</div>
<div class="slider_wrapper">
<input type="range" name="filters" id="snow" value="0" min="0" max="5" step="1">
</div>
<a href="#" class="remove_wrapper"><img class="remove" src="images/remove.png"></a>
</div>
</div>
<!-- <h2>Other Filters</h2> -->
<div id="extra_filters">
<a href="#" id="tree_skiing.png">Tree Skiing</a>
<a href="#" id="family_friendly.png">Family Friendly</a>
<a href="#" id="nighttime_restaurants.png">Food</a>
<a href="#" id="beginner.png">Good for Beginners</a>
<a href="#" id="expert.png">Expert Skiing</a>
<a href="#" id="nightlife.png">Nightlife</a>
<a href="#" id="lifts.png">Lift Experience</a>
<a href="#" id="uncrowded.png">Uncrowded</a>
<a href="#" id="terrain_park.png">Snowboarding</a>
</div>
</form>
</div>
<div id="map_container" class="large_map">
<div id="map"></div>
</div>
<div id="list_container">
<table id="results_table">
<thead>
<tr>
<th>#</th>
<th>Resort</th>
<th>Region</th>
<th>Score</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<footer></footer>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAD7UjF8s5PZB_UF1FkR5k21ljqQYFg1I0">
</script>
<script src="js/jquery-2.1.4.js"></script>
<script src="js/main.js"></script>
</body>
</html>