-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathG_2024_10_comete.html
108 lines (96 loc) · 4.54 KB
/
G_2024_10_comete.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Galerie Photo</title>
<link rel="stylesheet" href="style_galerie.css">
<link rel="icon" type="image/x-icon" href="ico/icone.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<div class="logo">florentpuy@website :-$ cd galerie</div>
<nav>
<ul>
<li><a href="https://floceans.github.io/index.html" class="nav-link">Accueil</a></li>
<li><a href="https://floceans.github.io/photographe.html" class="nav-link">Photographe</a></li>
<li><a href="https://floceans.github.io/ingenieur.html" class="nav-link">Ingenieur</a></li>
</ul>
</nav>
</header>
<main>
<section class="gallery">
<h1>Comète Tsuchinshan-ATLAS - Martinique - 10.2024</h1>
<h2>Publié dans Ciel & Espace</h2>
<h2>Fujifilm X-T4, Fujinon 18-55mm f/2.8-4</h2>
<div class="grid-container">
<div class="photo">
<img src="https://res.cloudinary.com/dfgx18dwh/image/upload/q_25/v1734365142/2024_10_comete/hzqbvceftnk8bdsrazan.png"
data-full="https://res.cloudinary.com/dfgx18dwh/image/upload/v1734365142/2024_10_comete/hzqbvceftnk8bdsrazan.png"
alt="Photo 1">
</div>
<div class="photo">
<img src="https://res.cloudinary.com/dfgx18dwh/image/upload/q_25/v1734365141/2024_10_comete/ycymapg4q7b9l0nicokw.png"
data-full="https://res.cloudinary.com/dfgx18dwh/image/upload/v1734365141/2024_10_comete/ycymapg4q7b9l0nicokw.png"
alt="Photo 2">
</div>
<div class="photo">
<img src="https://res.cloudinary.com/dfgx18dwh/image/upload/q_25/v1734365140/2024_10_comete/l7iuad9eix2bvlbgjc82.png"
data-full="https://res.cloudinary.com/dfgx18dwh/image/upload/v1734365140/2024_10_comete/l7iuad9eix2bvlbgjc82.png"
alt="Photo 2">
</div>
<div class="photo">
<img src="https://res.cloudinary.com/dfgx18dwh/image/upload/q_25/v1734365140/2024_10_comete/fveyftsr8ffurx2gnbkw.png"
data-full="https://res.cloudinary.com/dfgx18dwh/image/upload/v1734365140/2024_10_comete/fveyftsr8ffurx2gnbkw.png"
alt="Photo 2">
</div>
<div class="photo">
<img src="https://res.cloudinary.com/dfgx18dwh/image/upload/q_25/v1734365139/2024_10_comete/wotyzcoj6hagvfo9bfxy.png"
data-full="https://res.cloudinary.com/dfgx18dwh/image/upload/v1734365139/2024_10_comete/wotyzcoj6hagvfo9bfxy.png"
alt="Photo 2">
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Florent Puy - Garantit sans GAFAM</p>
<div class="contact-container">
<div class="contact-column">
<p>
<i class="fas fa-envelope"></i>
<a href="mailto:florentpuy@proton.me">florentpuy@proton.me</a>
</p>
<p>
<i class="fab fa-github"></i>
GitHub : <a href="https://github.com/floceans" target="_blank">floceans</a>
</p>
</div>
<div class="contact-column">
<p>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/florent-puy-02a527183/" target="_blank">Florent Puy</a>
</p>
<p>
⛏️ Minecraft : fl0cean
</p>
</div>
<div class="contact-column">
<p>
<i class="fab fa-instagram"></i>
<a href="https://instagram.com/florentpuy" target="_blank">@florentpuy</a>
</p>
<p>
<i class="fas fa-chess"></i>
Chess : floceans
</p>
</div>
</div>
</footer>
<div class="modal" id="imageModal">
<span class="modal-close" id="modalClose">×</span>
<img id="modalImage" src="" alt="Image en grand format">
</div>
<script src="script.js"></script>
</body>
</html>