-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 883 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
25
26
27
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Site de photographe">
<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>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header class="l-header">
<a class="brand" href="index.html" aria-current="page" aria-label="Retourner sur la page d'accueil">
<img src="assets/images/logo.png" class="logo" alt="fisheye logo">
</a>
<h1 class="title">Nos photographes</h1>
</header>
<main id="main">
<section class="photographers"></section>
</main>
<script type="module" src="scripts/pages/index.js"></script>
</body>
</html>