-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FishEye</title>
</head>
<body>
<header id="header">
<div>
<a href="/index.html" name="logo" type="button" class="logo-link">
<img
src="photos/logo_fisheye.png"
alt="Fisheye Home page"
id="logo"
/>
</a>
</div>
<nav>
<ul>
<li class="tag" aria-label="tag" tabindex="0">#Portrait</li>
<li class="tag" aria-label="tag" tabindex="0">#Art</li>
<li class="tag" aria-label="tag" tabindex="0">#Fashion</li>
<li class="tag" aria-label="tag" tabindex="0">#Architecture</li>
<li class="tag" aria-label="tag" tabindex="0">#Travel</li>
<li class="tag" aria-label="tag" tabindex="0">#Sport</li>
<li class="tag" aria-label="tag" tabindex="0">#Animals</li>
<li class="tag" aria-label="tag" tabindex="0">#Events</li>
</ul>
</nav>
<a href="#header" id="sticky"><p>Passer au contenu</p></a>
</header>
<main>
<div><h1 class="title">Nos photographes</h1></div>
<section class="cards"></section>
</main>
<script src="main.js"></script>
</body>
</html>