Skip to content

Aliviar_pricelist.html #1

@Boykvsh

Description

@Boykvsh
<title>ALIVIAR HOTEL - Price List</title> <style> /* Basic Reset & Body Styles */ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; padding: 20px; background-color: #f4f4f4; color: #333; }
    .container {
        max-width: 900px;
        margin: 20px auto;
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    h1, h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 25px;
    }

    h1 {
        font-size: 2.8em;
        color: #2980b9; /* A nice blue for the hotel name */
        border-bottom: 2px solid #3498db;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 2em;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        margin-top: 40px;
        color: #34495e;
    }

    .category {
        margin-bottom: 30px;
    }

    .item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
    }

    .item:last-child {
        border-bottom: none;
    }

    .item-name {
        font-weight: bold;
        color: #34495e;
        flex: 2; /* Allows the name to take more space */
    }

    .item-description {
        flex: 3; /* Allows the description to take more space */
        font-size: 0.95em;
        color: #555;
        margin-left: 15px;
    }

    .item-price {
        font-weight: bold;
        color: #e74c3c; /* A distinct color for prices */
        font-size: 1.1em;
        text-align: right;
        flex: 1; /* Price takes less space */
        white-space: nowrap; /* Prevents price from wrapping */
    }

    .notes {
        margin-top: 40px;
        padding: 20px;
        background-color: #ecf0f1;
        border-left: 5px solid #3498db;
        color: #555;
        font-size: 0.9em;
    }

    .notes p {
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        body {
            padding: 10px;
        }
        .container {
            padding: 20px;
            margin: 10px auto;
        }
        h1 {
            font-size: 2.2em;
        }
        h2 {
            font-size: 1.8em;
        }
        .item {
            flex-direction: column;
            align-items: flex-start;
        }
        .item-description {
            margin-left: 0;
            margin-top: 5px;
        }
        .item-price {
            align-self: flex-end;
            margin-top: 5px;
        }
    }
</style>

ALIVIAR HOTEL

Your comfort is our priority.

    ---

    <h2>Room Rates</h2>
    <div class="category">
        <div class="item">
            <span class="item-name">Queen Classic Room</span>
            <span class="item-description">Stylish comfort with essential amenities for a restful stay.</span>
            <span class="item-price">₦18,000 / Night</span>
        </div>
        <div class="item">
            <span class="item-name">Royal Double Room</span>
            <span class="item-description">Larger room and bathroom space for enhanced comfort.</span>
            <span class="item-price">₦24,000 / Night</span>
        </div>
        <div class="item">
            <span class="item-name">Superior Double Room</span>
            <span class="item-description">Spacious urban oasis promising contemporary comfort.</span>
            <span class="item-price">₦30,000 / Night</span>
        </div>
        <div class="item">
            <span class="item-name">Executive Suite</span>
            <span class="item-description">Luxurious and expansive, perfect for extended stays or special occasions.</span>
            <span class="item-price">₦45,000 / Night</span>
        </div>
    </div>

    ---

    <h2>Beverage Selection</h2>
    <p style="text-align: center; color: #666; margin-bottom: 25px;">Enjoy a wide array of refreshing drinks.</p>

    <h3>Non-Alcoholic Beverages</h3>
    <div class="category">
        <div class="item">
            <span class="item-name">Bottled Water</span>
            <span class="item-description">Still or Sparkling (Small/Large)</span>
            <span class="item-price">₦1,500 - ₦2,500</span>
        </div>
        <div class="item">
            <span class="item-name">Soft Drinks</span>
            <span class="item-description">Coke, Sprite, Fanta, Pepsi, etc.</span>
            <span class="item-price">₦1,000</span>
        </div>
        <div class="item">
            <span class="item-name">Fresh Juices</span>
            <span class="item-description">Orange, Pineapple, Apple, Watermelon</span>
            <span class="item-price">₦2,500</span>
        </div>
        <div class="item">
            <span class="item-name">Hot Beverages</span>
            <span class="item-description">Coffee (Espresso, Latte, Cappuccino), Assorted Teas</span>
            <span class="item-price">₦2,000 - ₦3,500</span>
        </div>
    </div>

    <h3>Alcoholic Beverages</h3>
    <div class="category">
        <div class="item">
            <span class="item-name">Local Beers</span>
            <span class="item-description">Star, Gulder, Heineken, etc.</span>
            <span class="item-price">₦2,500 - ₦3,500</span>
        </div>
        <div class="item">
            <span class="item-name">Imported Beers</span>
            <span class="item-description">Budweiser, Corona, Guinness (Foreign Extra)</span>
            <span class="item-price">₦3,500 - ₦5,000</span>
        </div>
        <div class="item">
            <span class="item-name">House Wine</span>
            <span class="item-description">Red/White (per glass)</span>
            <span class="item-price">₦4,000</span>
        </div>
        <div class="item">
            <span class="item-name">Premium Wine</span>
            <span class="item-description">Assorted Red/White/Sparkling (per bottle)</span>
            <span class="item-price">₦15,000 - ₦75,000+</span>
        </div>
        <div class="item">
            <span class="item-name">Spirits</span>
            <span class="item-description">Whisky, Gin, Vodka, Rum (per shot/bottle)</span>
            <span class="item-price">₦3,000 - ₦8,000 (shot) / ₦30,000+ (bottle)</span>
        </div>
        <div class="item">
            <span class="item-name">Cocktails</span>
            <span class="item-description">Classic & Signature Mixes</span>
            <span class="item-price">₦5,000 - ₦8,000</span>
        </div>
    </div>

    ---

    <h2>Other Services</h2>
    <div class="category">
        <div class="item">
            <span class="item-name">Laundry Service</span>
            <span class="item-description">Per item, express service available.</span>
            <span class="item-price">Varies</span>
        </div>
        <div class="item">
            <span class="item-name">Extra Bed</span>
            <span class="item-description">Subject to availability.</span>
            <span class="item-price">₦5,000 / Night</span>
        </div>
        <div class="item">
            <span class="item-name">Conference Room Rental</span>
            <span class="item-description">Half-day / Full-day rates.</span>
            <span class="item-price">Available on Request</span>
        </div>
    </div>

    <div class="notes">
        <p><strong>Please Note:</strong></p>
        <ul>
            <li>All prices are in **Nigerian Naira (₦)**.</li>
            <li>Prices are subject to change without prior notice.</li>
            <li>An additional **10% service charge** and **7.5% VAT** may apply to all services and items.</li>
            <li>For large groups or special requests, please contact our front desk.</li>
        </ul>
    </div>
</div>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions