Untitled

 avatar
unknown
plain_text
a month ago
2.5 kB
8
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Restaurant Page</title>
</head>
<body>

    <!-- Hero Section -->
    <h1>Himalayan MoMo House</h1>
    <h2>Fresh Nepali Taste Everyday</h2>
    <h3>Our Menu</h3>

    <!-- About Section -->
    <h3>About Us</h3>
    <p>
        Himalayan MoMo House is a local restaurant famous for authentic
        Nepali momo, thukpa, and warm hospitality.
    </p>

    <p>
        Special Offer: Get 20% discount on all combo meals every Saturday.
    </p>

    <!-- Services Section -->
    <h3>Services</h3>
    <ul>
        <li>Dine In</li>
        <li>Takeaway</li>
        <li>Delivery</li>
        <li>Outdoor Seating</li>
    </ul>

    <!-- Order Process -->
    <h3>How To Order</h3>
    <ol>
        <li>Choose your favorite food</li>
        <li>Add items to cart</li>
        <li>Confirm your order</li>
        <li>Complete payment</li>
    </ol>

    <!-- Food Description -->
    <h3>Popular Food Items</h3>
    <dl>
        <dt>Chicken MoMo</dt>
        <dd>Steamed dumplings filled with minced chicken and spices.</dd>

        <dt>Buff Chowmein</dt>
        <dd>Stir-fried noodles with buffalo meat and vegetables.</dd>

        <dt>Thukpa</dt>
        <dd>Hot noodle soup served with chicken and fresh vegetables.</dd>

        <dt>Masala Tea</dt>
        <dd>Traditional milk tea blended with aromatic spices.</dd>
    </dl>

    <!-- Pricing Table -->
    <h3>Price List</h3>
    <table border="1">
        <tr>
            <th>Food Name</th>
            <th>Price</th>
            <th>Availability</th>
        </tr>

        <tr>
            <td>Chicken MoMo</td>
            <td>Rs. 180</td>
            <td>Available</td>
        </tr>

        <tr>
            <td>Buff Chowmein</td>
            <td>Rs. 200</td>
            <td>Available</td>
        </tr>

        <tr>
            <td>Thukpa</td>
            <td>Rs. 220</td>
            <td>Available</td>
        </tr>

        <tr>
            <td>Pizza</td>
            <td>Rs. 450</td>
            <td>Out of Stock</td>
        </tr>

        <tr>
            <td>Masala Tea</td>
            <td>Rs. 80</td>
            <td>Available</td>
        </tr>
    </table>

    <!-- Contact Section -->
    <h3>Contact Us</h3>
    <p>Address: New Road, Kathmandu, Nepal</p>
    <p>Phone: +977 9800000000</p>
    <p>Email: [email protected]</p>
    <p>Opening Hours: 9:00 AM - 10:00 PM</p>

</body>
</html>
Editor is loading...
Leave a Comment