Restaurant Website Development

Job ID: 40140664

Budget: ₹12,500 – ₹37,500 INR

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Restaurant Name</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">Your Restaurant</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<section id="home" class="hero">
<h1>Welcome to Your Restaurant</h1>
<p>Delicious food, great atmosphere.</p>
<button onclick="alert('Reservation feature coming soon!')">Reserve a Table</button>
</section>

<section id="menu">
<h2>Our Menu</h2>
<div class="menu-items">
<div class="item">
<h3>Appetizer</h3>
<p>Description and price.</p>
</div>
<div class="item">
<h3>Main Course</h3>
<p>Description and price.</p>
</div>
<div class="item">
<h3>Dessert</h3>
<p>Description and price.</p>
</div>
</div>
</section>

<section id="about">
<h2>About Us</h2>
<p>Story of your restaurant.</p>
</section>

<section id="contact">
<h2>Contact</h2>
<p>Address, phone, email.</p>
</section>

<footer>
<p>&copy; 2023 Your Restaurant. All rights reserved.</p>
</footer>

<script src="script.js"></script>
</body>
</html>