-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrecherche.html
33 lines (29 loc) · 1.13 KB
/
recherche.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline+Display:wght@500&display=swap" rel="stylesheet">
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/recherche.js"></script>
<title>Recherche</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="search-container">
<div class="topnav">
<a id="maintitre" class="active" href="recherche.html" onclick="hideTab()">M!AM</a>
<div class="title" href="#about" id="homeButton">Food Database</div>
</div>
<div id="button">
<input type="text" id="req" placeholder="Search">
<input type="submit" id="target" value="Search" onclick="recherche()">
</div>
<section id="listColor">
<div id="listAll">
<div id="loader"></div>
</div>
</section>
</div>
</body>
</html>