forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 876 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>
<link href="css/index.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">
<script src="https://kit.fontawesome.com/8e95469ef4.js" crossorigin="anonymous"></script>
<title>Fisheye</title>
</head>
<body>
<header>
<img src="assets/images/logo.png" class="logo" alt="" role="img" />
<h1>Nos photographes</h1>
</header>
<main id="main">
<div class="photographer_section"></div>
</main>
<script type="module" src="scripts/templates/photographer.js"></script>
<script type="module" src="scripts/utils/logo.js"></script>
<script type="module" src="scripts/pages/index.js"></script>
</body>
</html>