-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (31 loc) · 1.21 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="build/style.css">
<script src="build/index.js" defer></script>
<script type="module" src="js/app.js" defer></script>
<title>Les petits plats</title>
</head>
<body>
<div class="container">
<img class="mx-auto d-block" src="assets/icones/logo.svg" alt="Logo du site">
<h1 class="text-center">Les petits plats</h1>
<div class="custom-input">
<input type="text" placeholder="Rechercher une recette">
<button type="submit">
<img src="assets/icones/loupe.svg" alt="Rechercher">
</button>
</div>
<section class="filter-active" id="filter-active">
</section>
<section class="filter-select" id="filter-select">
</section>
<section class="row gap-5 recettes mb-5" id="recettes">
</section>
<div class="alert alert-danger msg-info hide-block" id="msg-info">
</div>
</div>
</body>
</html>