-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1012 Bytes
/
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Tremplin jeunes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/webp" href="https://lacapsule.org/media/assets/lacapsule_favicon.webp">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="gallery">
<div id="load">Tremplin Jeunes</div>
<aside class="left">Mor</aside>
<aside class="right">laix</aside>
<div id="lightbox" class="modal">
<span id="closeLightbox" onclick="closeLightbox()">×</span>
<span id="prevImage">❮</span> <!-- Flèche gauche -->
<img class="modal-content" id="modalImage">
<span id="nextImage">❯</span> <!-- Flèche droite -->
</div>
</div>
<script src="./js/displayMin.js"></script>
<script src="./js/lightbox.js"></script>
<script src="./js/download.js"></script>
<script src="./js/touchSimulator.js"></script>
</body>
</html>