forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (29 loc) · 986 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
28
29
30
31
<!DOCTYPE html>
<html 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">
<img src="./assets/images/logo.png" alt="logo Fisheye" class="logo"
/></a>
<h1>Nos photographes</h1>
</header>
<main id="main">
<div class="photographer_section"></div>
</main>
<script src="./scripts/templates/PhotographerCard.js"></script>
<script src="./scripts/models/PhotographerModel.js"></script>
<script src="./scripts/factories/PhotographersFactory.js"></script>
<script src="./scripts/api/Api.js"></script>
<script src="./scripts/pages/index.js"></script>
</body>
</html>