Started the project

This commit is contained in:
Quentin ANIERE
2022-04-07 16:03:53 +02:00
commit 2e47a55a09
11 changed files with 99 additions and 0 deletions

46
index.html Normal file
View File

@@ -0,0 +1,46 @@
<!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">
<title>DenisSlider2000™</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="title">
<img src="title.gif">
</div>
<div id="mobile-title">
<img src="title.gif">
</div>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="photo-container">
<img src="./images/denis_chemise.png">
</div>
</div>
<div class="swiper-slide">
<div class="photo-container">
<img src="./images/denis_chapeau.png">
</div>
</div>
<div class="swiper-slide">
<div class="photo-container">
<img src="./images/saint_denis.png">
</div>
</div>
<div class="swiper-slide">
<div class="photo-container">
<img src="./images/denis.png">
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/>
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>