-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavoris.html
More file actions
57 lines (47 loc) · 2.09 KB
/
favoris.html
File metadata and controls
57 lines (47 loc) · 2.09 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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">
<!--CSS-->
<link rel="stylesheet" href="assets/css/style.css">
<!--CDN Google font-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<!--CDN Fontawesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<!--Leaflet JS-->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
<!--Favicon-->
<link rel="shortcut icon" href="https://irtshdf.fr/wp-content/uploads/2021/04/Crous-logo-lille-nord-pas-de-calais-350x350.png" type="image/x-icon">
<!--Titre de l'onglet page-->
<title>Crous MEL - Favoris</title>
</head>
<body>
<main>
<!-- Top -->
<div class="main-div">
</div>
<!-- Menu -->
<nav>
<div class="nav ">
<a href="index.html" target="#" rel="noopener noreferrer">
<i class="fa-solid fa-map-location-dot fa-xl nav-icon"></i>
<span class="nav-text">Carte</span>
</a>
</div>
<div class="nav nav-active">
<a href="favoris.html" target="#" rel="noopener noreferrer">
<i class="fa-solid fa-heart fa-xl nav-icon"></i>
<span class="nav-text">Favoris</span>
</a>
</div>
</nav>
</main>
<!--JS-->
<script src="assets/js/Favoris.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>