-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
48 lines (45 loc) · 1.3 KB
/
gallery.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Galerie</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Platzhalter für den Header -->
<div id="header-placeholder"></div>
<section class="flex">
<div class="gallery">
<div class="gallery-item">
<img src="" alt="Bild 1">
<p>Bild 1 Beschreibung</p>
</div>
<div class="gallery-item">
<img src="" alt="Bild 2">
<p>Bild 2 Beschreibung</p>
</div>
<div class="gallery-item">
<img src="" alt="Bild 3">
<p>Bild 3 Beschreibung</p>
</div>
<div class="gallery-item">
<img src="" alt="Bild 4">
<p>Bild 4 Beschreibung</p>
</div>
<div class="gallery-item">
<img src="" alt="Bild 5">
<p>Bild 5 Beschreibung</p>
</div>
<div class="gallery-item">
<img src="" alt="Bild 6">
<p>Bild 6 Beschreibung</p>
</div>
</div>
</section>
<!-- Platzhalter für den Footer -->
<div id="footer-placeholder"></div>
<!-- Externes JavaScript einbinden -->
<script src="script.js"></script>
</body>
</html>