forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (23 loc) · 1.12 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
<!DOCTYPE html>
<html lang="fr">
<head>
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link type="text/css" href="css/style.css" rel="stylesheet" >
<title>Fisheye - Accueil</title>
</head>
<body class="photographers">
<header class="wrapper">
<a href="./" aria-label="Fisheye Home Page" class="link-home" tabindex="0">
<img src="assets/images/logo.png" class="logo" alt="Logo de l'entreprise Fisheye">
</a>
<h1 class="main-title" tabindex="0">Nos photographes</h1>
</header>
<main id="main" class="wrapper">
<div class="photographer_section"></div>
</main>
</body>
<script type="module" src="./scripts/pages/index.js"></script>
</html>