-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.19 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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">
<!-- Google Fonts - Lato + DM Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Lato:wght@100;300;400;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
>
<!-- Style sheet -->
<link rel="stylesheet" href="./style/style.css">
<!-- Infos -->
<title>Les petits plats - Recettes de cuisine</title>
<meta name="description" content="Application de recettes de cuisine">
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
</head>
<body>
<!-- Header Logo -->
<header class="header">
<div class="header-container">
<a href="./index.html" class="header-logo-link">
<img class="header-logo" src="./assets/hat.svg" alt="logo">
<h1 class="header-logo-title">Les petits plats</h1>
</a>
</div>
</header>
<!-- Search section -->
<section class="search">
<h2 class="search-title">Search</h2>
<!-- Main search section-->
<div id="search"></div>
<!-- Tags selected section -->
<div class="selected-tag-container" id="selected-tag-container"></div>
<!-- Tags search section -->
<div class="search-tags-container">
<div class="combobox" id="combobox-ingredients"></div>
<div class="combobox" id="combobox-appliance"></div>
<div class="combobox" id="combobox-ustensils"></div>
</div>
</section>
<main class="main" id="main"></main>
<script src="./index.js" type="module"></script>
</body>
</html>