-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 2.29 KB
/
index.html
File metadata and controls
69 lines (61 loc) · 2.29 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<meta charset="utf-8">
<title>Mein Testseite</title>
</head>
<body>
<div class="sidenav">
<a href="index.html">Main</a>
<a href="about/index.html">About</a>
<a href="projects/index.html" >Projects</a>
</div>
<div class="main">
<h1>Meine erste Webseite</h1>
<h2>Herzlich Willkommen</h2>
<p class="editor-note"><strong>Ich</strong> heiße <strong>dich</strong> herzlich auf meiner kleinen Webseite Willkommen.</p>
<p>Ich hoffe du wirst die ein oder andere Inspiration finden. Klicke dich einfach durch!</p>
</div>
<div class="alpTours">
<h2>Eine Tour durch die Alpen!</h2>
<p>Ein paar Impressionen aus dem schönen Allgäu. Klicke einfach auf das Bild.</p>
<div class="slideshow-container">
<div class="mySlidesFade">
<img src="bilder/blick-hang.JPG" style="width: 100%">
<div class="text">Blick auf die Hänge</div>
</div>
<div class="mySlidesFade">
<img src="bilder/bergbahn.JPG" style="width: 100%">
<div class="text">Blick auf die Berbahn</div>
</div>
<div class="mySlidesFade">
<img src="bilder/blick-osten.JPG" style="width: 100%">
<div class="text">Blick in die Berge</div>
</div>
<div class="mySlidesFade">
<img src="bilder/blick-sueden.JPG" style="width: 100%">
<div class="text">Blick ins Vorland</div>
</div>
<div class="mySlidesFade">
<img src="bilder/gras.JPG" style="width: 100%">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
<span class="dot" onclick="currentSlide(5)"></span>
</div>
<div class="footer">
<p>Alle Daten werden unseriös verarbeitet</p>
</div>
<script src="scripts/main.js"></script>
</body>
</html>