-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
109 lines (105 loc) · 3.38 KB
/
menu.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html>
<head>
<link rel="stylesheet" type="text/css" href="navbar.css">
<style>
body {
background-color: yellow;
color: red;
font-family: sans-serif;
}
.menu-section {
margin: 30px;
display: flex;
flex-wrap: wrap;
justify-content: center;
row-gap: 40px;
}
.menu-item {
border: 1px solid red;
padding: 10px;
margin: 10px;
width: 350px;
height: 300px;
margin-bottom: 40px;
border-radius: 5px;
}
.menu-item-name {
font-weight: bold;
font-size: 24px;
margin: 20px;
}
.menu-item-description {
font-style: italic;
font-size: 16px;
}
.menu-item img {
height: 230px;
width: 100%;
border-radius: 5px 5px 0 0;
}
.a-menu{
background-color:red ;
margin: 0 0 20px 0;
}
.a-menu:hover{
padding-left:330px ;
}
</style>
</head>
<body>
<header>
<div id="head" class="flex">
<div id="logo">
<img src="logo.png" id="logo-img">
</div>
<div id="navbar">
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#.html" id="#">#</a></li>
</ul>
</header>
<h2 class="head" style="color:red">DESiBURGER's MENU</h1>
<div class="menu-section">
<div class="menu-item">
<img src="gallery\b (4).jpg" alt="Classic Burger">
<span class="menu-item-name">Classic Burger</span>
<p class="menu-item-description">A delicious, classic beef burger topped with lettuce, tomato, onion, and special sauce.</p>
</div>
<div class="menu-item">
<img src="veggie-burger.jpg" alt="Veggie Burger">
<span class="menu-item-name">Veggie Burger</span>
<p class="menu-item-description">A plant-based patty topped with lettuce, tomato, onion, and special sauce.</p>
</div>
<div class="menu-item">
<img src="gallery\b (12).jpg" alt="BBQ Burger">
<span class="menu-item-name">BBQ Burger</span>
<p class="menu-item-description">A beef burger topped with BBQ sauce, crispy onions, and cheddar cheese.</p>
</div>
<div class="menu-item">
<img src="bacon-cheeseburger.png" alt="Bacon Cheeseburger">
<span class="menu-item-name">Bacon Cheeseburger</span>
<p class="menu-item-description">A beef burger topped with crispy bacon and your choice of cheese.</p>
</div>
<div class="menu-item">
<img src="gallery\b (1).jpg" alt="Peri Peri">
<span class="menu-item-name">Peri Peri</span>
<p class="menu-item-description">A burger topped with cheddar cheese, and onion.</p>
</div>
<div class="menu-item">
<img src="gallery\b (5).jpg" alt="Chili Burger">
<span class="menu-item-name">Chili Burger</span>
<p class="menu-item-description">A beef burger topped with spicy chili, cheddar cheese, and onion.</p>
</div>
</div>
<h2 class="head a-menu"><a href="location.html" style="color:yellow">Check Our Locations-----></a></h2>
<footer>
<p>©Copyright 2022-23 DESiBURGER</p>
</footer>
</body>
</html>