restaurant_app / index.html
nagasurendra's picture
Create index.html
c488739 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Menu</title>
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<h1 class="header">🍽 Restaurant Menu</h1>
<!-- Breads Section -->
<section class="menu-section">
<h2>Breads</h2>
<div class="menu-items">
<div class="item-card">
<p>Roti</p>
<p>₹50</p>
<button class="add-btn" onclick="navigateToItem('Roti')">+</button>
</div>
<div class="item-card">
<p>Butter Naan</p>
<p>₹60</p>
<button class="add-btn" onclick="navigateToItem('Butter Naan')">+</button>
</div>
</div>
</section>
<!-- Curries Section -->
<section class="menu-section">
<h2>Veg Curries</h2>
<div class="menu-items">
<div class="item-card">
<p>Paneer Butter Masala</p>
<p>₹180</p>
<button class="add-btn" onclick="navigateToItem('Paneer Butter Masala')">+</button>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>