forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphotographer.html
More file actions
61 lines (45 loc) · 1.73 KB
/
photographer.html
File metadata and controls
61 lines (45 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>Fisheye – Page photographe</title>
<link rel="stylesheet" type="text/css" href="./assets/css/main.css" />
</head>
<body>
<header class="platform-header">
<div class="header__wrapper">
<a href="./" aria-label="Page d'accueil Fisheye">
<img src="./assets/img/logo.png" alt="Page photographe Fisheye" class="header__logo" />
</a>
</div>
</header>
<main class="platform-photographer">
<section class="photographer__infos">
<div class="infos__wrapper"></div>
</section>
<section class="photographer__medias">
<div class="medias__header">
<form class="platform-form">
<div class="form__row">
<label for="sort" tabindex="0">Trier par</label>
<select id="sort" name="sort">
<option value="popularity">Popularité</option>
<option value="date">Date</option>
<option value="title">Titre</option>
</select>
</div>
</form>
</div>
<div class="medias__list">
</div>
<div class="lightbox" tabindex="0" aria-label="Vue complète de l'image">
<div class="lightbox__previous" tabindex="0" aria-label="Sélectionner l'image précédente"></div>
<div class="lightbox__media"></div>
<div class="lightbox__next" tabindex="0" aria-label="Sélectionner l'image suivante"></div>
<div class="lightbox__close" tabindex="0" aria-label="Fermer la fenêtre"></div>
</div>
</section>
</main>
<script src="./scripts/main.js" type="module"></script>
</body>
</html>