-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeal.html
33 lines (29 loc) · 1.2 KB
/
meal.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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Exploring Meal</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
</head>
<body>
<header>
<h1 class="text-center text-warning">Exploring Food</h1>
</header>
<main class="container-fluid">
<div class="d-flex justify-content-between mb-4 mx-4">
<h2>My meals</h2>
<input id="search-field" class="rounded-pill ps-3" type="text" placeholder="Search you meal" onkeyup="searchMeal(event)">
</div>
<section>
<div id="meal-conatiner" class="row row-cols-1 row-cols-md-3 g-4">
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<script src="js/meal.js"></script>
</body>
</html>