-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (72 loc) · 2.97 KB
/
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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/.sass/main.css" />
<title>JustStreamIt</title>
</head>
<body>
<header class="header">
<h1 class="header__title"><a href="#">JustStreamIt</a></h1>
<nav>
<ul class="header__nav">
<li class="header__category"><a href="#">Accueil</a></li>
<li class="header__category"><a href="#caroussel__top-films">Catégoties</a></li>
</ul>
</nav>
</header>
<section id="top-film-block">
<div id="top-film">
<div id="top-film__image"></div>
<p id="top-film__info"></p>
</div>
<button type="button" class="button button__open-modal">Infos</button>
</section>
<h2>Films les mieux notés</h2>
<div id="caroussel__top-films" class="caroussel">
<button type="button" class="button button__previous">Previous</button>
<div id="gallery__top-films" class="gallery">
<ul class="images__top-films"></ul>
</div>
<button type="button" class="button button__next">Next</button>
</div>
<h2>Films Animations</h2>
<div id="caroussel__animation" class="caroussel">
<button type="button" class="button button__previous">Previous</button>
<div id="galery__animation" class="gallery">
<ul class="images__animation"></ul>
</div>
<button type="button" class="button button__next">Next</button>
</div>
<h2>Films Aventure</h2>
<div id="caroussel__adventure" class="caroussel">
<button type="button" class="button button__previous">Previous</button>
<div id="galery__adventure" class="gallery">
<ul class="images__adventure"></ul>
</div>
<button type="button" class="button button__next">Next</button>
</div>
<h2>Films Fantasy</h2>
<div id="caroussel__fantasy" class="caroussel">
<button type="button" class="button button__previous">Previous</button>
<div id="galery__fantasy" class="gallery">
<ul class="images__fantasy"></ul>
</div>
<button type="button" class="button button__next">Next</button>
</div>
<!-- ? A voir pour la boite modale -->
<div id="modal-box" class="modal">
<div class="modal__details">
<span class="close">×</span>
<div class="modal__image"></div>
<h1>Détails du film</h1>
<ul class="modal__film-details"></ul>
</div>
</div>
<footer>
<p>JustStreamIt<br />
</footer>
<script src="./script.js"></script>
</body>
</html>