forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 904 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
<!DOCTYPE html>
<html lang="FR">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<title>Fisheye</title>
</head>
<body>
<div class="screen-size">
<header class="header">
<a href="index.html" class="header__link" aria-current="page"><img src="assets/images/logo.png" class="header-logo" alt="Logo de Fisheye - Lien vers page d'accueil"></a>
<h1 class="header-title">Nos photographes</h1>
</header>
<main class="main">
<div class="photographer-section"></div>
</main>
<script src="scripts/pages/index.js" type="module"></script>
</div>
</body>
</html>