forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (22 loc) · 792 Bytes
/
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
<!DOCTYPE html>
<html lang="fr" xml:lang="fr">
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8">
<link rel="icon" type="image/png" href="./assets/favicon.png">
<link href="https://fonts.googleapis.com/css?family=DM+Sans&display=swap" rel="stylesheet">
<title>Fisheye</title>
</head>
<body>
<header>
<a href="./index.html" aria-label="lien vers la page d'accueil" tabindex="0" aria-current="page">
<img src="./assets/images/logo.png" class="logo" alt="logo Fisheye"/>
</a>
<h1 tabindex="0">Nos photographes</h1>
</header>
<main id="main">
<section class="photographer_section" aria-label="Liste des photographes"></section>
</main>
<script type="module" src="./js/pages/index.js"></script>
</body>
</html>