-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
306 lines (293 loc) · 10.2 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<title>Scoot – Home</title>
<link
href="https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Space+Mono:wght@700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/5225b7dab1.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="header">
<img
src="assets/icons/hamburger.svg"
alt="nav-toggle"
class="header__nav-toggle"
/>
<a href="/">
<img src="assets/logo.svg" alt="logo" class="logo header__logo" />
</a>
<div class="header__navigation">
<div class="header__nav-list">
<a href="about.html" class="header__nav-link">About</a>
<a href="locations.html" class="header__nav-link">Location</a>
<a href="careers.html" class="header__nav-link">Careers</a>
<a href="#cta" class="btn header__btn">Get Scootin</a>
</div>
</div>
</header>
<main>
<section class="intro">
<picture>
<source
srcset="assets/images/home-hero-tablet.jpg"
media="(max-width: 1100px) and (min-width: 601px)"
/>
<source
srcset="assets/images/home-hero-mobile.jpg"
media="(max-width: 600px)"
/>
<img
alt="hero-bg"
src="assets/images/home-hero-desktop.jpg"
class="intro__bg"
/>
</picture>
<div class="intro__content">
<h1 class="heading-1 mb-md intro__heading">
Scooter sharing made simple
</h1>
<div class="intro__text-container">
<p class="intro__text">
Scoot takes the hassle out of urban mobility. Our bikes are placed
in convenient locations in each of our cities. Use our app to
locate the nearest bike, unlock it with a tap, and you’re away!
</p>
<img
src="assets/patterns/line.svg"
alt="line"
class="intro__pattern intro__line"
/>
<img
src="assets/patterns/right-arrow.svg"
alt="right-arrow"
class="intro__pattern intro__arrow"
/>
</div>
<a href="#cta" class="btn intro__btn">Get Scootin</a>
</div>
<img
src="assets/patterns/white-circles.svg"
alt=""
class="intro__circle"
/>
<img
src="assets/patterns/right-arrow.svg"
alt="right-arrow"
class="intro__pattern-mobile"
/>
</section>
<section class="icons-section">
<div class="icons-section__pattern"></div>
<div class="icons-section__item">
<img
src="assets/icons/locate.svg"
alt="locate"
class="icons-section__icon mb-md"
/>
<div class="icons-section__content">
<h4 class="heading-4 icons-section__title">Locate with app</h4>
<p class="icon-section__text">
Use the app to find the nearest scooter to you. We are
continuously placing scooters in the areas with most demand, so
one should never be too far away.
</p>
</div>
</div>
<div class="icons-section__item">
<img
src="assets/icons/scooter.svg"
alt="scooter"
class="icons-section__icon mb-md"
/>
<div class="icons-section__content">
<h4 class="heading-4 icons-section__title">Pick your scooter</h4>
<p class="icon-section__text">
We show the most important info for the scooters closest to you.
So you know how much charge they have left and can see roughly how
much it will cost.
</p>
</div>
</div>
<div class="icons-section__item">
<img
src="assets/icons/ride.svg"
alt="ride"
class="icons-section__icon mb-md"
/>
<div class="icons-section__content">
<h4 class="heading-4 icons-section__title">Enjoy the ride</h4>
<p class="icon-section__text">
Scan the QR code and the bike will unlock. Retract the cable lock,
put on a helmet, and you’re off! Always lock bikes away from
walkways and accessibility ramps.
</p>
</div>
</div>
</section>
<section class="image-text-row image-text-row--right">
<div class="image-text-row__img-container">
<img
class="image-text-row__img"
src="assets/images/telemetry.jpg"
alt="telemetry"
/>
<img
src="assets/patterns/circle.svg"
alt="circle"
class="image-text-row__circle"
/>
<img
src="assets/patterns/left-downward-arrow.svg"
alt="arrow"
class="image-text-row__arrow image-text-row__arrow--long"
/>
</div>
<div class="image-text-row__content">
<h2 class="heading-2 mb-sm image-text-row__heading">
Easy to use riding telemetry
</h2>
<p class="image-text-row__text">
The Scoot app is available with riding telemetry. This means it can
show you your average speed, how long you've been using the scooter,
your traveling distance, and many more things all in an easy to use
app.
</p>
<a href="/about.html" class="btn">Learn More</a>
</div>
</section>
<section class="image-text-row image-text-row--left">
<div class="image-text-row__img-container">
<img
class="image-text-row__img"
src="assets/images/near-you.jpg"
alt="near-you"
/>
<img
src="assets/patterns/circle.svg"
alt="circle"
class="image-text-row__circle"
/>
<img
src="assets/patterns/left-upward-arrow.svg"
alt="arrow"
class="image-text-row__arrow"
/>
</div>
<div class="image-text-row__content">
<h2 class="heading-2 mb-sm image-text-row__heading">
Coming to a city near you
</h2>
<p class="image-text-row__text">
Scoot is available in 4 major cities so far. We’re expanding
rapidly, so be sure to let us know if you want to see us in your
hometown. We’re aiming to let our scooters loose on 23 cities over
the coming year.
</p>
<a href="/locations.html" class="btn">Learn More</a>
</div>
</section>
<section class="image-text-row image-text-row--right">
<div class="image-text-row__img-container">
<img
class="image-text-row__img"
src="assets/images/payments.jpg"
alt="payments"
/>
<img
src="assets/patterns/circle.svg"
alt="circle"
class="image-text-row__circle"
/>
<img
src="assets/patterns/left-downward-arrow.svg"
alt="arrow"
class="image-text-row__arrow"
/>
</div>
<div class="image-text-row__content">
<h2 class="heading-2 mb-sm image-text-row__heading">
Zero hassle payments
</h2>
<p class="image-text-row__text">
Our payment is as easy as one two three. We accept most credit cards
and debit cards. You can also link your PayPal account inside the
app. Need to pay later? No worries! You can defer payment for up to
a month.
</p>
<a href="/about.html" class="btn">Learn More</a>
</div>
</section>
</main>
<section class="cta" id="cta">
<h2 class="heading-2 cta__text">Sign up and Scoot off today</h2>
<div class="cta__download">
<a href="#cta" class="cta__download-link">
<div class="cta__download-button cta__download-button--apple">
<i class="cta__download-icon fab fa-apple"></i>
<div class="cta__download-text">
<p>Available on the</p>
<p>AppStore</p>
</div>
</div>
</a>
<a href="#cta" class="cta__download-link">
<div class="cta__download-button cta__download-button--google">
<i class="cta__download-icon fab fa-google-play"></i>
<div class="cta__download-text">
<p>Get it on</p>
<p>GooglePlay</p>
</div>
</div>
</a>
</div>
<img
class="cta__pattern"
src="assets/patterns/semi-circles.svg"
alt="semi-circles"
/>
</section>
<footer class="footer">
<a href="/">
<img src="assets/logo-white.svg" alt="logo" class="logo footer__logo" />
</a>
<div class="footer__nav">
<a href="about.html" class="footer__nav-link">About</a>
<a href="locations.html" class="footer__nav-link">Location</a>
<a href="careers.html" class="footer__nav-link">Careers</a>
</div>
<div class="footer__social">
<a href="#cta" class="footer__social-link">
<svg class="footer__social-icon">
<use xlink:href="assets/icons/facebook.svg#icon"></use>
</svg>
</a>
<a href="#cta" class="footer__social-link">
<svg class="footer__social-icon footer__social-icon--small">
<use xlink:href="assets/icons/twitter.svg#icon"></use>
</svg>
</a>
<a href="#cta" class="footer__social-link">
<svg class="footer__social-icon">
<use xlink:href="assets/icons/instagram.svg#icon"></use>
</svg>
</a>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>