-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (33 loc) · 1.02 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
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Resturant Meal Details</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body {
background-color: #E6E6FA;
margin-left: 200px;
margin-right: 200px;
}
</style>
</head>
<body>
<h1 style="text-align: center; color: tomato; ">Special Meal</h1>
<!--<div style="text-align: center; padding-top: 10px;important">
<input type="text" id="search_meal" name="search_meal" placeholder="Search.."><button onclick="searchh()">Search</button>
</div>-->
<div class="topnav">
<div class="search-container">
<input type="text" id="search_meal" placeholder="Search.." name="search">
<button onclick="searchh()">Submit</button>
</div>
</div>
<div id="meall_single_details" style="padding-top: 20px;">
</div>
<div id="meall" style="text-align: center; padding-top: 50px;">
</div>
<div id="meall_div" style="text-align: center; padding-top: 50px;">
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>