-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.7 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Accueil Fisheye</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/cssindex.css">
</head>
<body>
<header>
<a href="index.html" aria-label="Lien pour l'accueil" title="Fisheye">
<img src="photos/logo.png" alt="Logo Fisheye lien pour accueil" class="logo">
</a>
<nav aria-label="photographers tags" class="categories" id="navigation">
<button aria-label="Tag Portrait" class="btn_select" data-tag="portrait">#Portrait</button>
<button aria-label="Tag Art" class="btn_select" data-tag="art">#Art</button>
<button aria-label="Tag Fashion" class="btn_select" data-tag="fashion">#Fashion</button>
<button aria-label="Tag Architecture" class="btn_select" data-tag="architecture">#Architecture</button>
<button aria-label="Tag Travel" class="btn_select" data-tag="travel">#Travel</button>
<button aria-label="Tag Sports" class="btn_select" data-tag="sports">#Sports</button>
<button aria-label="Tag Animals" class="btn_select" data-tag="animals">#Animals</button>
<button aria-label="Tag Events" class="btn_select" data-tag="events">#Events</button>
</nav>
<div class="block-url-ancre" id="lientags">
</div>
</header>
<main aria-label="nav principale">
<h1 id="photographes">Nos photographes</h1>
<nav id="photographers" aria-labelledby="photographes">
</nav>
</main>
<footer>
</footer>
<script src="js/index/scriptindex.js"></script>
<script src="js/index/showphotographes.js"></script>
</body>
</html>