-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 2.34 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
<!DOCTYPE html>
<html>
<head>
<title>Scooter page prototype</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-compatible" content="ie=edge">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header>
<p id="header"></p>
<span id="css_width_onresize" class="css_width_onresize" class="hide-width"></span>
</header>
<main>
<section class="hero-section">
<div class="hero-content">
<div class="hero-arrow-body"></div>
<div class="hero-arrow-head"></div>
<h1>Scooter sharing made simple</h1>
<p>
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>
<button>Get Scootin</button>
</div>
<div class="image-slider-control">
<div></div>
<div></div>
<div></div>
</div>
</section>
<section class="other-section">
<div class="other-section-content">
<h2>Easy to use riding telementry</h2>
<p>
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>
<button>Learn More</button>
</div>
<div class="image-outer">
<div class="other-arrow-body"></div>
<div class="other-arrow-head"></div>
</div>
</section>
</main>
<footer><a href="https://github.com/Ifycode/Scooter-page-prototype" target="_blank">Github Repo</a></footer>
<script src="./js/index.js"></script>
</body>
</html>