-
Notifications
You must be signed in to change notification settings - Fork 0
/
mealdb.html
41 lines (39 loc) · 1.75 KB
/
mealdb.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Meal DB</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<h1 class="text-center text-success">Search Your Food</h1>
<div class="input-group mb-3 w-50 mx-auto">
<input id="search-field" type="text" class="form-control" placeholder="Search your favorite Food" aria-label="Recipient's username"
aria-describedby="button-addon2">
<button onclick="searchFood()" class="btn btn-outline-secondary" type="button" id="button-search">Search</button>
</div>
<!-- single mea details -->
<div id="meal-details" class="w-50 mx-auto h-50">
</div>
<!-- meal seaqrch result -->
<div id="search-result" class="row row-cols-1 row-cols-md-3 g-4">
<!-- <div class="col">
<div class="card h-100">
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional
content.</p>
</div>
</div>
</div> -->
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="mealdb.js"></script>
</body>
</html>