-
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.5 KB
/
Copy pathindex.html
File metadata and controls
69 lines (61 loc) · 2.5 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 lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fotogram</title>
<meta name="description"
content="Fotogram ist eine Bildergalerie, die Fotos von Vögeln im Berliner Tiergarten zeigt.">
<link rel="icon" type="image/x-icon" href="./assets/icons/favorite.png">
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body>
<header>
<section class="logo-section">
<img src="./assets/icons/header-logo.png" alt="header logo" class="header-logo">
Fotogram
</section>
</header>
<main>
<section class="gallery" aria-label="Galerie Vorschau">
<h1 class="gallery-title">Vögel im Berliner Tiergarten</h1>
<div id="gallery-grid" class="gallery-grid">
<!-- dynamisches grid - mittels init()/buildGallery() -->
</div>
</section>
<dialog class="dialog" id="dialog" aria-labelledby="dialog-img-title">
<div class="dialog-inner">
<header class="dialog-header">
<h3 id="dialog-img-title" class="dialog-img-title">dateiname.jpg</h3>
<button id="dialog-btn-close" class="dialog-close-button" type="button" aria-label="Dialog schließen">
<img class="dialog-close-button-icon" src="./assets/icons/Close icon.png" alt="Button zum schließen">
</button>
</header>
<figure class="dialog-body">
<img id="dialog-img" class="dialog-img" src="" alt="Ausgewähltes Vogelbild">
</figure>
<footer class="dialog-footer">
<button id="dialog-btn-prev" class="dialog-arrow-button" type="button" aria-label="Vorheriges Bild anzeigen">
<img class="dialog-prev-arrow" src="./assets/icons/Arrow-Right.png" alt="">
</button>
<div class="dialog-step-indicator" aria-live="polite">
<span id="currentStep">1</span> / <span id="totalSteps">10</span>
</div>
<button id="dialog-btn-next" class="dialog-arrow-button" type="button" aria-label="Nächstes Bild anzeigen">
<img class="dialog-next-arrow" src="./assets/icons/Arrow-Right.png" alt="">
</button>
</footer>
</div>
</dialog>
</main>
<footer>
<div class="footer-curve">
<div class="footer-credit-section">
<img src="./assets/icons/footer-logo.svg" alt="footer logo" class="footer-logo-img">
<p>© Developer Akademie GmbH</p>
</div>
</div>
</footer>
</body>
</html>