generated from Templates_CodeFirst/templateHtmlCss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.0 KiB
78 lines
2.0 KiB
<!DOCTYPE html>
|
|
<!-- Doctype HTML5 -->
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link type="text/css" rel="stylesheet" href="style.css">
|
|
<title>Corentin</title>
|
|
<nav class="navbar"></nav>
|
|
<ul class="navbar-list">
|
|
<li>
|
|
<a href="index.html">Accueil</a>
|
|
</li>
|
|
<li>
|
|
<a href="cursus.html">Cursus</a>
|
|
</li>
|
|
<li>
|
|
<a href="planning.html">Planning</a>
|
|
</li>
|
|
<li class="dropdown">
|
|
<a href="#">Gallerie</a>
|
|
<ul class="dropdown-content">
|
|
<li>
|
|
<a href="images.html">Images</a>
|
|
</li>
|
|
<li>
|
|
<a href="videos.html">Vidéos</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<a href="form.php">Formulaire</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</head>
|
|
<body>
|
|
<h1>Galerie d'Images</h1>
|
|
<h3 class="title_gallery">Espace</h3>
|
|
<div class="gallery">
|
|
<a href="space1.html">
|
|
<img src="img/space1.jpg" alt="Espace" />
|
|
</a>
|
|
<a href="space2.html">
|
|
<img src="img/space2.jpg" alt="Espace" />
|
|
</a>
|
|
<a href="space2.html">
|
|
<img src="img/space3.jpg" alt="Espace" />
|
|
</a>
|
|
</div>
|
|
|
|
<h3 class="title_gallery">Jeux video</h3>
|
|
<div class="gallery">
|
|
<a href="video_game1.html">
|
|
<img src="img/video_game1.jpg" alt="Rocket league" />
|
|
</a>
|
|
<a href="video_game2.html">
|
|
<img src="img/video_game2.jpg" alt="Valorant" />
|
|
</a>
|
|
<a href="video_game3.html">
|
|
<img src="img/video_game3.jpeg" alt="Fortnite" />
|
|
</a>
|
|
</div>
|
|
|
|
<h3 class="title_gallery">Sport</h3>
|
|
<div class="gallery">
|
|
<a href="sport1.html">
|
|
<img src="img/sport1.jpg" alt="Paintball" />
|
|
</a>
|
|
<a href="sport2.html">
|
|
<img src="img/sport2.jpg" alt="Ping-pong" />
|
|
</a>
|
|
<a href="sport3.html">
|
|
<img src="img/sport3.jpg" alt="Natation" />
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|