-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex.html
More file actions
253 lines (206 loc) · 9.81 KB
/
Index.html
File metadata and controls
253 lines (206 loc) · 9.81 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wanderlust</title>
<link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500&display=swap" rel="stylesheet">
<link href="css/index.css" rel="stylesheet" />
<script src="./components/Tabs.js" async=""></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- Main Container -->
<div class="sourceContainer">
<!-- Header -->
<header class="container">
<h1>Wanderlust</h1>
<nav class="container">
<a href="#">Become a Guide!</a>
<a href="#">Search</a>
<a href="https://wonderlust-manju.herokuapp.com/Login">Login</a>
<a href="#">Join</a>
</nav>
</header>
<!-- CTA Banner -->
<div class="CTA container">
<span class="container">
<h2 id="banner-txt">Find your next adventure.</h2>
<br>
<h3 id="banner-sub-text">Local experiences by local guides.</h3>
<br>
<button>Join Now!</button>
</span>
</div>
<!-- Trending topic top bar -->
<div class="tabs">
<div class="topics">
<span class="title">TRENDING EXPERIENCES:</span>
<div data-tab="all" class="tab active-tab">ALL</div>
<div data-tab="outdoor" class="tab">OUTDOORS</div>
<div data-tab="culinary" class="tab">CULINARY</div>
<div data-tab="music" class="tab">MUSIC</div>
<div data-tab="sports" class="tab">SPORTS</div>
<div data-tab="sightseeing" class="tab">SIGHTSEEING</div>
</div>
</div>
<!-- Featured Experiences -->
<section class="experiences container">
<div class="cardBox container">
<div data-tab="outdoor" class="card card1 container">
<h4>Sky Bridge Hike</h4>
<img class="img1" src="../wanderlust-UI-Ramses/design-files/maher-el-aridi-98330-unsplash.jpg">
<p>Come on the famous sky bridge hike and have your picture taken along the way.</p>
<button class="viewBtn">View Details</button>
</div>
<div data-tab="culinary" class="card card2 container">
<h4>Food Tour</h4>
<img class="img1" src="design-files/jay-wennington-2065-unsplash.jpg">
<p>Five restaurants in two hours to explore culinary gems around the city.</p>
<button class="viewBtn">View Details</button>
</div>
<div data-tab="culinary" class="card card3 container">
<h4>Academic Dinner Party</h4>
<img class="img1 uniqImg" src="design-files/redcharlie-739534-unsplash.jpg">
<p>Join 11 of the top academics from the University of Oxford for a casual dinner and conversation.</p>
<button class="viewBtn">View Details</button>
</div>
<div data-tab="outdoor" class="card card4 container">
<h4>Picnic at Mary's Lake</h4>
<img class="img1" src="design-files/olivia-hutcherson-743663-unsplash.jpg">
<p>Wine and cheese by the lake. Bring a freind, meet new people, and enjoy the scenery.</p>
<button class="viewBtn">View Details</button>
</div>
<div data-tab="music" class="card card5 container">
<h4>Karoake Night</h4>
<img class="img1" src="design-files/bruce-mars-558710-unsplash.jpg">
<p>A night of karoake, food, and drinks!</p>
<button class="viewBtn">View Details</button>
</div>
<div data-tab="sports" class="card card6 container">
<h4>Locals Only Surf Club</h4>
<img class="img1" src="design-files/teddy-kelley-105544-unsplash.jpg">
<p>Get a guided experience to surf the secret shore at bonos beach.</p>
<button class="viewBtn">View Details</button>
</div>
</div>
</section>
<!-- How it works -->
<section class="howItWorks container">
<div><h2>How It Works</h2></div>
<div class="stepContainer">
<div class="txtDiv">
<div class="steps">
<h3>Create an account</h3>
<br>
<p class="bigP">Personalize your information and build your network.</p>
</div>
<div class="steps">
<h3>Find your adventure</h3>
<br>
<p class="bigP">Search thousands of experieinces with curated recommendations.</p>
</div>
<div class="steps">
<h3>Jump In!</h3>
<br>
<p class="bigP">Log off and jumo into the real world. Meet your guide and try something new.</p>
</div>
</div>
<div class="imgDiv">
<img class="img2" src="design-files/tyler-nix-608484-unsplash.jpg">
</div>
</div>
</section>
<!-- Search by activity -->
<section class="searchByActivity container">
<div><h2>Search by Activity</h2></div>
<div class="categoryContainer container">
<div class="categoryTitle"><h3>City Tours</h3></div>
<div class="triPanelBox container">
<div class="panel container">
<img src="design-files/lachlan-gowen-787977-unsplash.jpg">
<div><p>London Proper</p></div>
</div>
<div class="panel container">
<img src="design-files/jonas-hoss-1354891-unsplash.jpg">
<div><p>Historic Italy</p></div>
</div>
<div class="panel lastPanel container">
<img src="design-files/shea-rouda-471295-unsplash.jpg">
<div><p>Downtown Denver</p></div>
</div>
</div>
</div>
<div class="categoryContainer container">
<div class="categoryTitle"><h3>Outdoor Adventures</h3></div>
<div class="triPanelBox container">
<div class="panel container">
<img src="design-files/berkay-akbulut-1276360-unsplash.jpg">
<div><p>Sky Dive Lesson</p></div>
</div>
<div class="panel container">
<img src="design-files/larisa-birta-577898-unsplash.jpg">
<div><p>Nature Walk</p></div>
</div>
<div class="panel lastPanel container">
<img src="design-files/kristina-wagner-357533-unsplash.jpg">
<div><p>Angel's Landing</p></div>
</div>
</div>
</div>
<div class="categoryContainer container">
<div class="categoryTitle"><h3>Food & Drink</h3></div>
<div class="triPanelBox container">
<div class="panel container">
<img src="design-files/marc-babin-716173-unsplash.jpg">
<div><p>Dinner Party</p></div>
</div>
<div class="panel container">
<img src="design-files/kelsey-chance-575535-unsplash.jpg">
<div><p>Cooking Class</p></div>
</div>
<div class="panel lastPanel container">
<img src="design-files/abhishek-sanwa-limbu-782224-unsplash.jpg">
<div><p>Handmade Dumplings</p></div>
</div>
</div>
</div>
</section>
<!-- Become a guide CTA -->
<section class="becomeAguide container">
<span>
<h2>Become a guide</h2>
<br>
<br>
<h3>Share your passion, make money, build a portfolio.</h3>
<br>
<br>
<button>Begin</button>
</span>
</section>
<!-- Search by location -->
<section class="searchByLocation">
<div><h2>Search by location</h2></div>
<div class="triPanelBox container">
<div class="panel container">
<img src="design-files/ricardo-gomez-angel-987203-unsplash.jpg">
<div><p>Colombia</p></div>
</div>
<div class="panel container">
<img src="design-files/tyler-nix-582593-unsplash.jpg">
<div><p>Hawaii</p></div>
</div>
<div class="panel lastPanel container">
<img src="design-files/jezael-melgoza-1127048-unsplash.jpg">
<div><p>Tokyo</p></div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div><a href="about.html">About Us!</a></div>
</footer>
</div>
</body>
</html>