← back to Model Arena

data/artifacts/1219c364c3d2/hermes3-8b.html

105 lines

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Luxury Wallpaper - Elegance on Walls</title>
    <style>
        body {
            font-family: Georgia, "Times New Roman", Times, serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            padding: 40px;
            background-image: linear-gradient(to bottom, #ff7e5f, #feb52e);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 32px;
            color: white;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 24px;
            color: #ff7e5f;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: white;
            color: #333;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #f2f2f2;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
        }
        
        .spec-table th,
        .spec-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .spec-table th {
            background-color: #ff7e5f;
            color: white;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Luxury Wallpaper - Elegance on Walls</h1>
        <div class="price">$999.99</div>
        <a href="#" class="btn">Add to Cart</a>
        
        <table class="spec-table">
            <tr>
                <th>Specification</th>
                <th>Description</th>
            </tr>
            <tr>
                <td>Material</td>
                <td>Premium quality wallpaper with a silky smooth finish</td>
            </tr>
            <tr>
                <td>Size</td>
                <td>Available in custom sizes to fit your room perfectly</td>
            </tr>
            <tr>
                <td>Color Options</td>
                <td>Choose from an extensive palette of luxury colors</td>
            </tr>
            <tr>
                <td>Durability</td>
                <td>Durable and long-lasting, perfect for high-traffic areas</td>
            </tr>
        </table>
    </div>
</body>
</html>