-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.09 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.09 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./assets/img/icons/favicon.png" />
<link rel="stylesheet" href="./style.css" />
<title>Fotogram</title>
</head>
<body>
<header>
<img src="assets/img/icons/logo.png" alt="Fotogram Logo" />
</header>
<main>
<div class="gallery-content" id="gallery-content"></div>
</main>
<footer>
<a href="./pages/impressum.html">Impressum</a> |
<a href="./pages/privacy-policy.html">Datenschutz</a>
</footer>
<section class="overlay d-none" id="overlay" onclick="closeOverlay()">
<div class="overlay-container">
<button onclick="left(); event.stopPropagation()">❮</button>
<div
onclick="event.stopPropagation()"
class="overlay-content"
id="overlay-content"
></div>
<button onclick="right(); event.stopPropagation()">❯</button>
</div>
</section>
</body>
<script src="./script.js"></script>
</html>