-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (68 loc) · 3.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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">
<link rel="icon" type="image/png" href="assets/logo1.png">
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<script src="https://kit.fontawesome.com/bcfded1c34.js" crossorigin="anonymous"></script>
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&display=swap" rel="stylesheet">
<title>Les petits plats</title>
</head>
<body>
<header>
<h1 aria-label="logo Les petits plats" tabindex="1">
<img class="logo logo1" src="assets/logo1.png" alt="logo les petits plats" aria-label="logo les petits plats"/>
<img class="logo" src="assets/les_petits_plats.png" alt="logo les petits plats" aria-label="logo les petits plats"/>
</h1>
</header>
<nav>
<div class="searchbar">
<input type="search" name="search" placeholder="Rechercher un ingrédient, appareil, ustensiles ou une recette" tabindex="1" id="search" autocomplete='off' aria-label="Rechercher un ingrédient, appareil, ustensiles ou une recette">
<i class="fas fa-search">
</i>
</div>
<div id="tagList">
</div>
<div id="box-ingredients" class="boxList" tabindex="1">
<span class="list-ingredients padding title">Ingrédients</span>
<i class="fas fa-chevron-down movechevron">
</i>
<input type="text" name="ingredients" id="search-ingredients" class="hide search"
placeholder="Rechercher un ingredient">
<div id="listIngredients" class="list">
<ul class="search-list-ingredients"></ul>
</div>
</div>
<div id="box-appareils" class="boxList" tabindex="1">
<span class="list-appareils padding title">Appareils</span>
<i class="fas fa-chevron-down movechevron">
</i>
<input type="text" name="appliance" id="search-appareils" class="hide search"
placeholder="Rechercher un appareil">
<div id="listAppareils" class="list">
<ul class="search-list-appareils"></ul>
</div>
</div>
<div id="box-ustensiles" class="boxList" tabindex="1">
<span class="list-ustensiles padding title">Ustensiles</span>
<i class="fas fa-chevron-down movechevron">
</i>
<input type="text" name="ustensils" id="search-ustensils" class="hide search"
placeholder="Rechercher un ustensile">
<div id="listUstensiles" class="list">
<ul class="search-list-ustensils"></ul>
</div>
</div>
<div id="no-results">Aucune recette ne correspond à votre critère...<br> Vous pouvez chercher "tarte aux pommes", "poisson", etc.</div>
</nav>
<main>
<div id="recipes" tabindex="1">
</div>
</main>
<script src="./scripts/index.js" type="module"></script>
</body>
</html>