-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbikesharing.html
78 lines (68 loc) · 1.9 KB
/
bikesharing.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>NextPaul</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!--Header---------------------------------------------->
<header>
<div id="Logo">
<a href="#home"><img src="img/paul.png" alt="Logo"></a>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#howItWorks">How it works</a></li>
<li><a href="#locations">Locations</a></li>
</ul>
</nav>
</header>
<!--Home---------------------------------------------->
<section id="home">
<h2>Welcome to </h2>
<h1>NextPaul</h1>
<a href="#howItWorks"><img src="img/pfeil.png" alt="Pfeil"></a>
</section>
<!--How it works---------------------------------------------->
<section id="howItWorks">
<h3>How it works!</h3>
<div class="row">
<div class="third">
<img src="img/rental.svg">
<p>Simply scan the QR-code or enter the bike number.</p>
</div>
<div class="third">
<img src="img/parking.svg">
<p>You can park your bike inbetween your journey without stopping the rental.</p>
</div>
<div class="third">
<img src="img/return.svg">
<p>Return your bike to an official station or within the flex zone</p>
</div>
</div>
</section>
<!--Locations---------------------------------------------->
<section id="locations">
<div class="row">
<div class="third">
<h3>Karlsruhe</h3>
<img src="img/karlsruhe2.jpg" alt="karlsruhe">
</div>
<div class="third">
<h3>Berlin</h3>
<img src="img/berlin.jpg" alt="berlin">
</div>
<div class="third">
<h3>Hagen</h3>
<img src="img/hagen.jpg" alt="hagen">
</div>
</div>
</section>
<!--Impressum---------------------------------------------->
<footer>
<p>© Paul Löhr, Simon Schreckenberg, Florian Taubenberger</p>
</footer>
</body>
</html>