-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
43 lines (41 loc) · 1.43 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Gallery</title>
</head>
<body>
<header>
<div class="pt1H">
<span class="TitleWebSite">Roadtrip</span>
<img class="logo" src="img/departures.svg" alt="Logo">
</div>
<nav id="menu">
<button id="buttonDropdown">Menu</button>
<div id="myDropdown">
<a href="index.html">Acceuil</a>
<a href="gallery.html">Galerie</a>
<a href="jeux.html">Jeux</a>
</div>
</nav>
</header>
<main>
<section id="feed">
<button data-direction="column" onclick="changeview()">//</button>
<div id="mesphotos"></div>
<label for="url">URL :</label>
<input type="url" id="urlImg" name="url" required>
<button id="sendImg" onclick="sendImg()">+</button>
</section>
</main>
<footer>
<p>retrouvez nos coordonnées ici : <a href="#">[email protected]</a></p>
</footer>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
</html>