-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
257 lines (244 loc) · 12.3 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
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
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149262482-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-149262482-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<title>Buenbnb, cleaning service for Airbnb properties</title>
</head>
<body>
<nav class="navigation content centered">
<div id="logo-nav"><img id="logo-home" src="img/logo.png" alt="Buenbnb logo"></div>
<div id="menu-nav">
<!-- <h3 class="nav-item regular">Process</h3>
<h3 class="nav-item regular">Pricing</h3> -->
<h3 class="nav-item regular">How it works</h3>
<h3 class="nav-item" id="book-now">Book now</h3>
</div>
</nav>
<!-- Modal start -->
<div id="book-modal" class="modal-box">
<div class="modal-content">
<div>
<h3>Tell us when and where!</h3>
</div>
<div id="booking-form">
<!-- <div class="booking-information">
<p>Name</p>
<input type="text" placeholder="John McClean">
<p>Phone</p>
<input type="tel" placeholder="123-12348">
<p>Email</p>
<input type="email" placeholder="[email protected]">
<p>Address</p>
<input type="text" name="address">
<p>Cleaning date</p>
<input type="date">
<p>Cleaning hour</p>
<input type="time"><br><br>
</div> -->
<div class="quote-box">
<div id="instant-quotation">
<div id="calculator-input">
<div id="geo-location">
<!-- country selector -->
<div id="country-selector">
<h3>Select country</h3>
<select name="country" id="country">
<option value="not-selected">-Select-</option>
<option value="colombia">Colombia</option>
<option value="ecuador">Ecuador</option>
<option value="mexico">Mexico</option>
<option value="us">United States</option>
</select>
</div>
<!-- Town/city selection -->
<div id="town-selector">
<h3>Select Town</h3>
<div id="colombia">
<select name="town" id="col-town">
<option value="not-selected">-Select-</option>
<option value="Guatape">Guatape</option>
<option value="Cartagena">Cartagena</option>
<option value="Santa Marta">Santa Marta</option>
</select>
</div>
<div id="ecuador">
<select name="town" id="ecu-town">
<option value="not-selected">-Select-</option>
<option value="Guayaquil">Guayaquil</option>
<option value="Quito">Quito</option>
</select>
</div>
<div id="mexico">
<select name="town" id="mex-town">
<option value="not-selected">-Select-</option>
<option value="Cancun">Cancun</option>
<option value="Tulum">Tulum</option>
<option value="Puerto Aventuras">Puerto Aventuras</option>
<option value="Playa del Carmen">Playa del Carmen</option>
</select>
</div>
<div id="us">
<select name="town" id="us-town">
<option value="not-selected">-Select-</option>
<option value="Miami Beach">Miami Beach</option>
<option value="Fort Lauderdale">Fort Lauderdale</option>
<option value="West Palm Beach">West Palm Beach</option>
</select>
</div>
</div>
</div>
<div id="size-selector">
<h3>Size of the property</h3>
<p>
<select name="property-size" id="property-size">
<option value="not-selected" checked>-Select-<br>
<option value="-60">Less than 60 m2<br>
<option value="61-80"> 61 - 80 m2<br>
<option value="81-100">81 - 100 m2<br>
<option value="101-120">101 - 120 m2<br>
<option value="121-140">121 - 140 m2<br>
<option value="141-160">141 - 160 m2<br>
<option value="161-180">161 - 180 m2<br>
<option value="181-200">181 - 200 m2<br>
<option value="+200">More than 180 m2<br>
</select>
</p>
</div>
<div id="bring-supplies">
<h3>Should we bring cleaning supplies?</h3>
<p>
<select name="cleaning-supplies" id="cleaning-supplies">
<option value="not-selected">-Select-</option>
<option value="no">No</option>
<option value="yes">Yes</option>
</select>
</p>
</div>
</div>
<div class="amount-box" id="quoted-amount">
<h3>Price</h3>
<div id="pricing-display">
<h2 id="currency"></h2>
<h1 id="quote-calculation"></h1>
</div>
</div>
</div>
<div class="justify-right">
<button class="button blue-background landing-button black-shadow"><h3 class="button-h3" id="book-now-landing-button">Book now</h3></button>
</div>
</div>
</div>
</div>
<p id="modal-close">Close</p>
</div>
</div>
<!-- Modal end -->
<header class="content">
<div class="top-content">
<div class="head-description">
<!-- Main message -->
<div>
<h1>Cleaning for<br>
<strong class="purple-highlight">your Airbnb</strong><br>
made easy</h1>
<!-- Subtitle -->
<p class="light">Vetted cleaners to get your Airbnb ready for the next guest,<br>
<strong>any time, any day.</strong></p>
<button class="button purple-background landing-button black-shadow"><h3 class="button-h3" id="book-now-landing-button">Book a Cleaning</h3></button>
</div>
</div>
<div class="head-image">
<img id="img-welcome" src="img/laptop - mirror.png" alt="Buenbnb cleaning">
</div>
</div>
</header>
<main class="content">
<div class="central-content">
<div class="section-title">
<h2>Airbnb cleaning made easy</h2>
<p class="light">Save time and never worry about cleaning again</p>
</div>
<div class="element-centered">
<div class="grid-content">
<div class="content-item white-bgd black-shadow">
<h3 class="process-step-title">People you can trust</h3>
<img class="content-img" src="img/icons/TRUST.svg" alt="">
<p>
Our team members are all trained<br>
and background checked before joining.<br>
Your property is on good hands.
</p>
</div>
<div class="content-item white-bgd black-shadow">
<h3 class="process-step-title">Always ready on time</h3>
<img class="content-img" src="img/icons/RATE.svg" alt="">
<p>
We clean before your guest arrives,<br>
delivering a clean space always on time.<br>
Sparkling clean spaces for your guests.
</p>
</div>
<div class="content-item white-bgd black-shadow">
<h3 class="process-step-title">With products on hand</h3>
<img class="content-img" src="img/icons/AMMENITIES.svg" alt="">
<p>
You never have to worry about<br>
cleaning consumables, we bring it all.<br>
So you never worry about cleaning.
</p>
</div>
</div>
</div>
</div>
</main>
<section class="content">
<div class="bottom-content">
<div class="bottom-image">
<img id="img-bottom" src="img/mug and book.png" alt="Buenbnb cleaning">
</div>
<div class="bottom-description">
<!-- Main message -->
<h1>All the<br>
<strong class="blue-highlight">details covered</strong></h1>
<!-- Subtitle -->
<p class="light">
We strive for sparkling clean spacesevery single time we clean an space<br>
which is why we designed a detailed process that every team member follows.<br>
Check our guidelines for property cleaning to know more.
</p>
<div>
<button class="button blue-background landing-button black-shadow">
<h3 class="button-h3">Book a Cleaning</h3>
</button>
</div>
</div>
</div>
</section>
<footer class="content">
<div class="black-background">
<div class="footer-content">
<div class="footer-text">
<h3><strong>Contact us</strong></h3>
<p><strong>Whatsapp</strong> Mexico +529981140105</p>
<p><strong>Whatsapp</strong> Colombia +529981140105</p>
<p><strong>Email</strong> [email protected]</p>
</div>
</div>
</div>
</footer>
<script src="./app.js"></script>
<script src="./calculator.js"></script>
</body>
</html>