You are on page 1of 3

```html

<!DOCTYPE html>

<html>

<head>

<title>Desi Hut Restaurant</title>

<style>

body {

font-family: Arial, sans-serif;

margin: 0;

padding: 0;

header {

background-color: #FFC107;

color: # f;

padding: 20px;

text-align: center;

h1 {

margin: 0;

nav {

background-color: #333;

color: # f;

padding: 10px;

nav ul {

list-style: none;

margin: 0;

padding: 0;

nav li {

display: inline-block;

margin: 0 10px;

nav a {

color: # f;

text-decoration: none;

padding: 5px 10px;

border-radius: 5px;

nav a:hover {

background-color: # f;

color: #333;

main {

padding: 20px;

margin: 20px;

border: 1px solid #333;

border-radius: 10px;

background-color: # f;

box-shadow: 5px 5px 5px #333;

h2 {

margin-top: 0;

p {

margin: 0;

padding: 10px 0;

table {

ff
ff
ff
ff
ff
border-collapse: collapse;

width: 100%;

th, td {

padding: 10px;

text-align: left;

border-bottom: 1px solid #ddd;

th {

background-color: #333;

color: # f;

</style>

</head>

<body>

<header>

<h1>Desi Hut Restaurant</h1>

<p>Cloud kitchen and online food selling platform</p>

</header>

<nav>

<ul>

<li><a href="#menu">Menu</a></li>

<li><a href="#price">Price</a></li>

<li><a href="#ordering">Ordering</a></li>

<li><a href="#contact">Contact Us</a></li>

</ul>

</nav>

<main>

<h2>Everyday Lunch</h2>

<p>We o er one single meal each day, along with ve di erent side orders. Our
menu changes every day, so you can enjoy a variety of dishes throughout the week.</p>

<table>

<thead>

<tr>

<th>Meal of the Day</th>

<th>Side Orders</th>

</tr>

</thead>

<tbody>

<tr>

<td>Monday</td>

<td>Rice, Naan, Salad, Raita, Papad</td>

</tr>

<tr>

<td>Tuesday</td>

<td>Chole Bhature, Salad, Chutney, Raita, Papad</td>

</tr>

<tr>

<td>Wednesday</td>

<td>Vegetable Pulao, Salad, Raita, Pickle, Papad</td>

</tr>

<tr>

<td>Thursday</td>

<td>Paneer Tikka, Salad, Mint Chutney, Raita, Papad</td>

</tr>

<tr>

<td>Friday</td>

<td>Chicken Biryani, Salad, Raita, Pickle, Papad</td>

</tr>

<tr>

ff
ff
fi
ff
<td>Saturday</td>

<td>Aloo Paratha, Curd, Pickle, Salad, Papad</td>

</tr>

<tr>

<td>Sunday</td>

<td>Mutton Curry, Rice, Salad, Pickle, Papad</td>

</tr>

</tbody>

</table>

<h2 id="price">Price</h2>

<p>One meal costs just €12, without delivery charges.</p>

<h2 id="ordering">Ordering</h2>

<p>To place an order, please make sure to order at least a day before. We are
closed on Mondays. You can place your order online through our website or by giving us a call.</
p>

<h2 id="contact">Contact Us</h2>

<p>If you have any questions or concerns, feel free to reach out to us at
info@desihut.com or give us a call at +1 123-456-7890.</p>

</main>

</body>

</html>

```

You might also like