Today i made website for restaurant .
And i made some changes in website .
Here you can see the index.html.
Ahmad’s Restaurant
Delicious Food, Made Fresh
Welcome to the best restaurant in town.
About Us
Ahmad’s Restaurant has been serving delicious meals since 2024. We focus on fresh ingredients, great taste, and friendly service.
Contact Us
Email: contact@ahmadsrestaurant.com
Phone: random

here is my website

here you can see the styles.css
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f8f8f8;
}
header {
background: #333;
color: white;
padding: 15px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.hero {
background: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092') center/cover;
color: white;
text-align: center;
padding: 120px 20px;
}
.section {
padding: 40px;
text-align: center;
}
.menu-items {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.item {
background: white;
padding: 20px;
width: 250px;
border-radius: 10px;
box-shadow: 0 0 10px #ccc;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 15px;
}