forked from RiyadTangil/hungry-monster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<title>Hungry monster</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<form class="col-md-6 m-auto py-5">
<div class="input-group mb-3">
<input type="text" id="search-text" class="form-control" placeholder="Enter a meal ...">
<div class="input-group-append">
<button type="button" onclick="getMeal()" class="btn btn-danger" >Search</button>
</div>
</div>
</form>
</div>
<div id="meal-details">
</div>
<div id="meal-div">
</div>
<!-- JavaScript -->
<script src="script.js"></script>
<!-- <script src="async.js"></script> -->
</body>
</html>