-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<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" type="text/css" href="Site/CSS/style.css" />
<link rel="icon" type="image/png" href="Site/Ressource/JustStreamIt.png" />
<title lang="fr">Accueil JustStreamIt</title>
</head>
<body>
<div id="bloc_page">
<div id="topSection">
<header>
<h1 lang="fr">JustStreamIt</h1>
<nav>
<ul id="menu">
<li><a href="#" lang="fr">Accueil</a></li>
<li><a href="#" lang="fr">Catégories</a></li>
</ul>
</nav>
</header>
</div>
<section>
<h2 lang="fr">Meilleurs films toutes catégories confondues</h2>
<div id="best_movie">
<img class="el_best_movie" id="img_best_movie" src="#" alt="best_movie" />
<h2 class="el_best_movie" id="title_best_movie" lang="fr">Titre</h2>
<figure class="el_best_movie">
<a href="#modal1" class="js-modal" id="btn-link">Détails</a>
<figcaption></figcaption>
</figure>
</div>
</section>
<div id="panorama">
<div id="carousel1">
<h1 lang="fr">Films les mieux notés</h1>
</div>
<div id="carousel2">
<h1 lang="fr">Meilleurs films d'Aventure</h1>
</div>
<div id="carousel3">
<h1 lang="fr">Meilleurs films de Comédie</h1>
</div>
<div id="carousel4">
<h1 lang="fr">Meilleurs films de Science-Fiction</h1>
</div>
</div>
<aside id="modal1" class="modal" aria-hidden="true">
<div class="modal-wrapper js-modal-stop">
<div>
<button class="js-modal-close" lang="fr">Fermer la fenêtre</button>
</div>
<img id="js-img-movie" src="#" alt="Movie Picture" />
<ul id="js-liste-infos"></ul>
</div>
</aside>
</div>
<script src="Site/JS/app.js"></script>
</body>
</html>