-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (124 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camper App | Weingut Haas</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div class="wrapper-mobile-only">
<header>
<nav>
<ul>
<li>
<button class="active-menu" id="pin"></button>
</li>
<li>
<button class="active-menu" id="bookmark"></button>
</li>
<li>
<button class="active-menu" id="profile"></button>
</li>
<li>
<button class="active-menu" id="roulette"></button>
</li>
<li>
<button class="active-menu" id="arrow"></button>
</li>
<li>
<button
class="active-menu"
onclick="closeMenu()"
id="closing-button"
></button>
</li>
<li>
<button
class="inactive-menu"
onclick="openMenu()"
id="burger"
></button>
</li>
</ul>
</nav>
<section
class="big-top-picture"
style="background-image: url(./assets/img/Header_Weingut-Haas.png)"
></section>
</header>
<main>
<section class="icon-bar-top">
<div>
<button>Route</button>
<button>Verfügbarkeit</button>
</div>
<div>
<a href="#" class="icons" id="icon-phone"> </a>
<a href="#" class="icons" id="icon-bookmark"> </a>
</div>
</section>
<section class="accomodation-description">
<h3>Stellplatz für Camper</h3>
<h1>Weingut Haas</h1>
<p>
Lörem ipsum antikost epire, en jåment för ödleplåster autoras. Oning
megasofi. Regen jäläs. Du kan vara drabbad. Sofektiga ygt. Vare
plagyl syn i läxrut. Plavis okost, deepfake dorad inte triss
beterade den debel liksom.
</p>
</section>
<section class="booking-choices">
<a href="#">
<article>
<div>
<h3>Stellplatz</h3>
<p class="available-booking-choices">3/5 verfügbar</p>
</div>
<h2>Stellplatz für Camper</h2>
<p>
Wir haben Platz für 5 Camper mit einer max. Länge von 5m.
Wetterfester Unterstand.
</p>
</article>
</a>
<a href="./wohnen-im-gut.html">
<article>
<div>
<h3>Bed&Breakfast</h3>
<p class="available-booking-choices">3 verfügbar</p>
</div>
<h2>Wohnen im Gut</h2>
<p>
In unserem Gutshaus haben wir drei Wohnungen für 2–6 Personen
</p>
</article>
</a>
</section>
<section class="slider">
<img src="./assets/img/Slider.png" alt="Slider" />
</section>
<section class="extras">
<h2>Extras</h2>
<article>
<img src="./assets/img/Vector_Work-Travel.svg" alt="" />
<h3>Work&Travel</h3>
<p>Arbeite für Kost und Logis von Mai–August</p>
</article>
<article>
<img src="./assets/img/Vector_Washing-Mashine.svg" alt="" />
<h3>Waschmaschine</h3>
<p>Waschraum zur allgemeinen Nutzung</p>
</article>
<article>
<img src="./assets/img/Vector_Shop.svg" alt="" />
<h3>Hofladen</h3>
<p>Entdecke unsere Köstlichkeiten</p>
</article>
</section>
</main>
</div>
<script src="./assets/js/main.js"></script>
</body>
</html>