forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.55 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fisheye</title>
<meta name="description" content="Découvrez les photographes freelances et leurs talents.">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link type="text/css" rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap">
</head>
<body>
<header>
<div class="site-header">
<a href="/">
<img src="assets/images/logo.png" class="logo" alt="FishEye Home page">
</a>
<h1>Nos photographes</h1>
</div>
</header>
<main id="main">
<div class="photographer_section"></div>
</main>
<!-- Factories -->
<script src="scripts/factories/PhotographerFactory.js"></script>
<!-- Models -->
<script src="scripts/models/Photographer.js"></script>
<!-- Api -->
<script src="scripts/api/Api.js"></script>
<script src="scripts/api/DataApi.js"></script>
<!-- Templates -->
<script src="scripts/templates/PhotographerCard.js"></script>
<!-- Pages -->
<script src="scripts/pages/HomePage.js"></script>
<!-- Entry point -->
<script src="scripts/IndexApp.js"></script>
</body>
</html>