-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotographer.html
58 lines (55 loc) · 2.35 KB
/
photographer.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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Page Photographe</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/cssphotographers.css">
<script src="https://kit.fontawesome.com/959f234b81.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="modal_zone">
</div>
<div id="bloc_page">
<header class="head">
<a href="index.html" tabindex="0" aria-label="Lien pour l'accueil" title="Fisheye">
<img src="photos/logo.png" alt="Logo Fisheye lien pour accueil" class="logo">
</a>
</header>
<main id="profile">
</main>
<div id="compteur">
<span class="likes" aria-labelledby="compteur"></span>
<i class="fas fa-heart" aria-labelledby="compteur"></i>
<span class="price" aria-labelledby="compteur"></span>
<span aria-labelledby="compteur">€ / jour</span>
</div>
<section aria-label="contenu principal du photographe">
<nav aria-label="sort by" id="sortby">
<label for="selection">Trier par</label>
<div class="select-style">
<select name="sort by" id="selection">
<option value="popularite" aria-label="tri par popularité">Popularité</option>
<option value="date" aria-label="tri par date">Date</option>
<option value="titre" aria-label="tri par titre">Titre</option>
</select>
</div>
</nav>
<section aria-label="photos du photographe" id="medias_sections">
</section>
</section>
</div>
<div id="lightbox">
</div>
<script src="js/photographe/media/showmedia.js"></script>
<script src="js/photographe/media/showphotographeinfos.js"></script>
<script src="js/photographe/increment.js"></script>
<script src="js/photographe/compteur.js"></script>
<script src="js/photographe/modal.js"></script>
<script src="js/photographe/lightbox.js"></script>
<script src="js/photographe/media/mediaFactory.js"></script>
<script src="js/photographe/media/image.js"></script>
<script src="js/photographe/media/video.js"></script>
<script src="js/photographe/scriptphotographers.js"></script>
</body>
</html>