-
Notifications
You must be signed in to change notification settings - Fork 0
/
Restaurant Website.html
113 lines (97 loc) · 2.67 KB
/
Restaurant Website.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
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Website</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.header {
background-color: #333;
color: #fff;
text-align: center;
padding: 50px 0;
}
.navbar {
background-color: #444;
overflow: hidden;
}
.nav-item {
float: left;
padding: 20px;
text-align: center;
}
.nav-item a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.menu-item {
display: flex;
margin-bottom: 20px;
}
.menu-item img {
max-width: 150px;
height: auto;
margin-right: 20px;
}
.menu-details {
flex: 1;
}
.menu-title {
font-size: 20px;
margin-bottom: 5px;
}
.menu-description {
line-height: 1.5;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Welcome to Restaurant Name</h1>
<p>Discover our delicious menu.</p>
</div>
<div class="navbar">
<div class="nav-item"><a href="#">Home</a></div>
<div class="nav-item"><a href="#">Menu</a></div>
<div class="nav-item"><a href="#">About</a></div>
<div class="nav-item"><a href="#">Contact</a></div>
</div>
<div class="container">
<div class="menu-item">
<img src="https://via.placeholder.com/150x150" alt="Menu Item 1">
<div class="menu-details">
<h2 class="menu-title">Dish 1</h2>
<p class="menu-description">A delicious description of the dish.</p>
</div>
</div>
<div class="menu-item">
<img src="https://via.placeholder.com/150x150" alt="Menu Item 2">
<div class="menu-details">
<h2 class="menu-title">Dish 2</h2>
<p class="menu-description">Another tasty description of the dish.</p>
</div>
</div>
</div>
<div class="footer">
<p>© 2023 RestaurantWebsite.com. All rights reserved.</p>
</div>
</body>
</html>