-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
574 lines (538 loc) · 22.4 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
<!DOCTYPE html>
<html lang="en">
<head>
<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="stylesheet" href="style.css" />
<title>Reisebüro</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#home").hide();
$("#angebote-aktuell").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
$("#reiseziele").hide();
$('#kontakt').show();
// LINK HOME
$(".link-home").click(function () {
$("#home").show();
$("#angebote-aktuell").hide();
$("#reiseziele").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
$('#kontakt').hide();
});
// LINK HOME
// LINK ANGEBOTE
$(".link-angebote").click(function () {
$("#angebote-aktuell").show();
$("#home").hide();
$("#reiseziele").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
$('#kontakt').hide();
alert('Wenn Sie mit dem Mauszeiger über die Bilder fahren, erfahren Sie mehr!')
});
// LINK ANGEBOTE
// LINK REISEZIELE
$(".link-reiseziele").click(function () {
$("#reiseziele").show();
$("#angebote-aktuell").hide();
$("#home").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
$('#kontakt').hide();
});
// LINK REISEZIELE
$('.link-kontakt').click(function () {
$('#kontakt').show();
$("#reiseziele").hide();
$("#angebote-aktuell").hide();
$("#home").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
})
// LINK AMERIKA ANGEBOTE
$('.link-angebote-amerika').click(function () {
$("#home").hide();
$("#angebote-aktuell").hide();
$("#reiseziele").hide();
$("#angebote-amerika").show();
$("#angebote-asien").hide();
$("#angebote-europa").hide();
$('#kontakt').hide();
})
// LINK AMERIKA ANGEBOTE
$('.link-angebote-asien').click(function () {
$("#home").hide();
$("#angebote-aktuell").hide();
$("#reiseziele").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").show();
$("#angebote-europa").hide();
$('#kontakt').hide();
})
// LINK AMERIKA ANGEBOTE
// LINK EUROPA ANGEBOTE
$('.link-angebote-europa').click(function () {
$("#home").hide();
$("#angebote-aktuell").hide();
$("#reiseziele").hide();
$("#angebote-amerika").hide();
$("#angebote-asien").hide();
$("#angebote-europa").show();
$('#kontakt').hide();
})
// SONSTIGER CODE
$(".home-menubar-element").hover(function () {
$(".home-right-content").toggleClass("active");
});
$(".picture").hover(function () {
$(".angebote-right-picture-description").toggleClass("active");
});
$('.reiseziele-flex-container').each(function () {
$('this').css({
'width': $('.reiseziele-picture-right-america').outerWidth()
})
})
// SONSTIGER CODE
});
</script>
</head>
<body>
<header>
<h1>Reisebüro Bümpliz</h1>
<nav class="menu">
<ul class="menubar">
<li class="menubar-element link-angebote">
<a class="menubar-element" href="#angebote#aktuell">Angebote</a>
</li>
<li class="menubar-element link-reiseziele">
<a class="menubar-element" href="#reiseziele">Reiseziele</a>
</li>
<li class="menubar-element link-home">
<a class="menubar-element" href="#home">Home</a>
</li>
<li class="menubar-element link-kontakt">
<a class="menubar-element" href="#kontakt">Kontakt</a>
</li>
</ul>
</nav>
</header>
<!-- CONTENT ########################### CONTENT -->
<section id="content">
<!-- HOME ##################### HOME -->
<section id="home">
<section class="home-left">
<div class="home-left-picture">
<img src="./bilder/thailand.jpg" alt="Thailand" />
</div>
<section class="home-left-content">
<h2>Thailand</h2>
<p class="home-left-text">
Reisen Sie jetzt <span>nur</span> für <span>Fr. 999.-</span> nach
Thailand!
</p>
<div class="home-left-menu">
<ul>
<li class="menubar-element">
<a href="#angebote#thailand" class="menubar-element link-angebote">Jetzt buchen</a>
</li>
</ul>
</div>
</section>
</section>
<section class="home-right">
<div class="home-right-picture">
<img src="./bilder/globus.jpg" alt="Globus" />
</div>
<aside class="home-right-content">
<h2>Unsere Reiseziele</h2>
<div>
<ul class="home-right-menu">
<li>
<a href="#reiseziele" class="home-menubar-element link-reiseziele">Suchen Sie sich ihr Lieblireiseziel
aus!</a>
</li>
</ul>
</div>
</aside>
</section>
</section>
<!-- HOME ##################### HOME -->
<!-- ANGEBOTE ##################### ANGEBOTE -->
<section id="angebote">
<section id="angebote-aktuell">
<section class="angebote-left">
<div class="angebote-left-picture">
<img src="./bilder/Manhattan.jpg" alt="Manhattan" />
</div>
<section class="angebote-left-content">
<h2>New York</h2>
<div class="angebote-flex-container">
<p class="angebote-left-text">
Erleben Sie New York während 5 Tagen für
<span>nur Fr. 1299.-</span> in Begleitung einer anderen Person.
</p>
<p class="angebote-left-menu">
<a href="#" class="angebote-menu-link">Jetzt buchen</a>
</p>
</div>
</section>
</section>
<section class="angebote-right">
<div class="angebote-right-picture-container">
<div class="angebote-right-picture">
<img src="./bilder/Matterhorn.jpg" alt="Matterhorn" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Zermatt für <span>nur Fr. 1199.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/Sued-Afrika.jpg" alt="Südafrika" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Süd-Afrika für
<span>nur Fr. 859.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/Island.jpg" alt="Island" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Island für <span>nur Fr. 1299.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/thailand-klein.jpg" alt="Thailand" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Thailand für <span>nur Fr. 999.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
</div>
</section>
</section>
<section id="angebote-amerika">
<section class="angebote-left">
<div class="angebote-left-picture">
<img src="./bilder/Manhattan.jpg" alt="Manhattan" />
</div>
<section class="angebote-left-content">
<h2>New York</h2>
<div class="angebote-flex-container">
<p class="angebote-left-text">
Erleben Sie New York während 5 Tagen für
<span>nur Fr. 1299.-</span> in Begleitung einer anderen Person.
</p>
<p class="angebote-left-menu">
<a href="#" class="angebote-menu-link">Jetzt buchen</a>
</p>
</div>
</section>
</section>
<section class="angebote-right">
<div class="angebote-right-picture-container">
<div class="angebote-right-picture">
<img src="./bilder/san-francisco.jpg" alt="san-francisco" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche San Francisco für <span>nur Fr. 1259.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/Las-Vegas.jpg" alt="Las-Vega" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Las Vegas für
<span>nur Fr. 1699.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/peru.jpg" alt="peru" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Peru für <span>nur Fr. 1459.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/rio-de-janeiro.jpg" alt="rio-de-janeiro" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Rio de janeiro für <span>nur Fr. 1299.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
</div>
</section>
</section>
<section id="angebote-asien">
<section class="angebote-left">
<div class="angebote-left-picture">
<img src="./bilder/hong-kong.jpg" alt="hong-kong" />
</div>
<section class="angebote-left-content">
<h2>Hong Kong</h2>
<div class="angebote-flex-container">
<p class="angebote-left-text">
Erleben Sie Hong Kong während 5 Tagen für
<span>nur Fr. 1599.-</span> in Begleitung einer anderen Person.
</p>
<p class="angebote-left-menu">
<a href="#" class="angebote-menu-link">Jetzt buchen</a>
</p>
</div>
</section>
</section>
<section class="angebote-right">
<div class="angebote-right-picture-container">
<div class="angebote-right-picture">
<img src="./bilder/indien.jpg" alt="indien" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Indien für <span>nur Fr. 1159.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/japan.jpg" alt="japan" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Japan für
<span>nur Fr. 959.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/korea.jpg" alt="korea" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Korea für <span>nur Fr. 1399.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/thailand-klein.jpg" alt="Thailand" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Thailand für <span>nur Fr. 999.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
</div>
</section>
</section>
<section id="angebote-europa">
<section class="angebote-left">
<div class="angebote-left-picture">
<img src="./bilder/rom.jpg" alt="rom" />
</div>
<section class="angebote-left-content">
<h2>Rom</h2>
<div class="angebote-flex-container">
<p class="angebote-left-text">
Erleben Sie Rom während 5 Tagen für
<span>nur Fr. 959.-</span> in Begleitung einer anderen Person.
</p>
<p class="angebote-left-menu">
<a href="#" class="angebote-menu-link">Jetzt buchen</a>
</p>
</div>
</section>
</section>
<section class="angebote-right">
<div class="angebote-right-picture-container">
<div class="angebote-right-picture">
<img src="./bilder/Matterhorn.jpg" alt="Matterhorn" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Zermatt für <span>nur Fr. 1199.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/niederlanden.jpg" alt="niederlanden" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Niederlanden für
<span>nur Fr. 899.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/Island.jpg" alt="Island" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Island für <span>nur Fr. 1299.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
<div class="angebote-right-picture">
<img src="./bilder/griechenland.jpg" alt="griechenland" class="picture" />
<div class="angebote-right-picture-description">
<p class="angebote-right-picture-description-titel">
Eine Woche Griechenland für <span>nur Fr. 1159.-</span>
</p>
<p class="angebote-right-picture-description-link">
<a href="#">Jetzt buchen!</a>
</p>
</div>
</div>
</div>
</section>
</section>
</section>
<!-- ANGEBOTE ##################### ANGEBOTE -->
<!-- REISEZIELE #################### REISEZIELE -->
<section id="reiseziele">
<section id="reiseziele-left">
<div class="reiseziele-left-content">
<div class="reiseziele-left-picture">
<img src="./bilder/Europa.jpg" alt="Europa" class="reiseziele-picture-left" />
</div>
<div class="reiseziele-left-picture-description">
<div class="reiseziele-left-flex-container">
<p class="reiseziele-text">Europa Reisen</p>
<p class="reiseziele-button link-angebote-europa"><a href="#"
class="reiseziele-button-link link-angebote-europa">Angebote ansehen</a></p>
</div>
</div>
</div>
<div class="reiseziele-left-content">
<div class="reiseziele-left-picture">
<div class="reiseziele-left-picture">
<img src="./bilder/Asien.jpg" alt="Asien" class="reiseziele-picture-left" />
</div>
<div class="reiseziele-left-picture-description">
<div class="reiseziele-left-flex-container">
<p class="reiseziele-text">Asien Reisen</p>
<p class="reiseziele-button link-angebote-asien"><a href="#"
class="reiseziele-button-link link-angebote-asien">Angebote ansehen</a></p>
</div>
</div>
</div>
</div>
</section>
<section id="reiseziele-right">
<div class="reiseziele-right-content">
<div class="reiseziele-picture-right">
<img src="./bilder/Amerika.jpg" alt="Amerika" class="reiseziele-picture-right-america" />
</div>
<div class="reiseziele-right-picture-description">
<div class="reiseziele-flex-container">
<p class="reiseziele-text">
Amerika Reisen
</p>
<p class="reiseziele-button link-angebote-amerika">
<a href="#angebote#amerika" class="reiseziele-button-link link-angebote-amerika">Angebote ansehen</a>
</p>
</div>
</div>
</div>
</section>
</section>
<!-- REISEZIELE #################### REISEZIELE -->
<!-- KONTAKT ####################### KONTAKT -->
<section id="kontakt">
<section class="kontakt-map">
<div id="map">HIER WIRD GOOGLE MAPS SEIN</div>
</section>
<section class="kontakt-right">
<section class="kontakt-right-adresse">
<div class="reisebuero-daten">
<p class="kontakt-right-adresse-person">Reisebüro-Bümpliz</p>
<p class="kontakt-right-adresse-strasse-nr">Bahnhöheweg 70</p>
<p class="kontakt-right-adresse-plz-ort">3018 Bern</p>
</div>
<div class="persoenliche-daten">
<p class="kontakt-right-adresse-person">Gion Rubitschung</p>
<p class="kontakt-right-adresse-strasse-nr">Eichacker 2</p>
<p class="kontakt-right-adresse-plz-ort">4633 Hauenstein</p>
</div>
</section>
<section class="kontakt-right-kontaktaufnahme">
<form class="kontakt-right-kontaktaufnahme-form">
<label for="name"><h2>Name</h2></label>
<input type="text" class="kontakt-right-kontaktaufnahme-form-input" placeholder="Max Muster" id="name">
<label for="eMail"><h2>E-Mail Adresse</h2></label>
<input type="email" class="kontakt-right-kontaktaufnahme-form-input" placeholder="[email protected]" id="eMail">
<label for="strasse"><h2>Strasse mit Nr.</h2></label>
<input type="text" class="kontakt-right-kontaktaufnahme-form-input" placeholder="Musterstrasse 5" id="strasse">
<label for="ort"><h2>Postleihzahl und Ortschaft</h2></label>
<input type="text" class="kontakt-right-kontaktaufnahme-form-input" placeholder="1234 Musterort" id="ort">
<input type="submit" value="Senden">
</form>
</section>
</section>
</section>
<!-- KONTAKT ####################### KONTAKT -->
</section>
<!-- CONTENT ########################### CONTENT -->
<footer>
<section class="footer-left"></section>
</footer>
<div id="particles-js"></div>
<script src="./particlesJS/particles.min.js"></script>
<script src="./particlesJS/app.js"></script>
</body>
</html>