-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 3.41 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/style.css">
<script src="https://kit.fontawesome.com/a1e7b5bfa1.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<!-- form section start -->
<section id="menu-container">
<div class="container-sm">
<h2 class="menu-heading text-center mt-5">Add Menu - Restaurant</h2>
<form class="form">
<label for="restaurant-name" class="
form-label">Restaurant Name</label>
<input type="text" id="restaurant-name" class="form-control mb-3" placeholder="Restaurant name">
<label for="food-type" class="form-label">Type</label>
<select id="food-type" class="form-select mb-3">
<option>Break-Fast</option>
<option>Brunch</option>
<option>Lunch</option>
<option>Dinner</option>
</select>
<div class="row">
<div class="dish-name-div col-md-6">
<label for="dish-name" class="form-label">Dish name</label>
<input type="text" id="dish-name" class="form-control mb-3" placeholder="Dish name">
</div>
<div class="dish-btn col-md-6 mb-3">
<label for="img-btn" class="form-label">Dish-Image</label>
<button class="img-btn btn-primary btn-md form-control">Get Image</button>
<div class="api-img"></div>
</div>
</div>
<label for="desc" class="for-label">Description</label>
<input type="text" class="form-control mb-3" id="desc" placeholder="Description">
<button class="add-btn btn btn-md btn-success mb-3">Add to Menu</button>
</form>
</div>
</section>
<!-- form section end -->
<!-- card section start -->
<section class="container">
<h2 class="menu-list-heading text-center mt-5">Menu List</h2>
<div class="btn-div container-md">
<button class="show-all-btn btn btn-secondary btn-sm">All</button>
<button class="breakfast-btn btn btn-secondary btn-sm">Break-Fast</button>
<button class="brunch-btn btn btn-secondary btn-sm">Brunch</button>
<button class="lunch-btn btn btn-secondary btn-sm">Lunch</button>
<button class="dinner-btn btn btn-secondary btn-sm">Dinner</button>
<button class="remove-all btn btn-danger btn-sm">Remove all</button>
</div>
<div class="cards-container">
</div>
</section>
<script src="/script.js"></script>
</body>
</html>