-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategories.html
More file actions
51 lines (49 loc) · 1.36 KB
/
categories.html
File metadata and controls
51 lines (49 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>DonoFlix - Catégories</title>
<link rel="stylesheet" href="styles-categories.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="DF.png" alt="DonoFlix Logo">
<h1>DonoFlix</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Accueil</a></li>
<li><a href="categories.html">Catégories</a></li>
<li><a href="films.html">Films</a></li>
<li><a href="series.html">Séries</a></li>
<li><a href="documentaires.html">Documentaires</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="category">
<h2>Catégories</h2>
<div class="category-list">
<div class="category-item">
<img src="category1.jpg" alt="Category 1">
<h3>Comedie</h3>
</div>
<div class="category-item">
<img src="category2.jpg" alt="Category 2">
<h3>Action</h3>
</div>
<div class="category-item">
<img src="category3.jpg" alt="Category 3">
<h3>Science-Fiction</h3>
</div>
<div class="category-item">
<img src="category4.jpg" alt="Category 4">
<h3>Romantique</h3>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>