← back to Model Arena

data/artifacts/1219c364c3d2/qwen25-7b.html

97 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</title>
    <style>
        body {
            font-family: ' serif', sans-serif;
            background-color: #f0eae5;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }
        .wallpaper-hero {
            width: 80%;
            background: linear-gradient(to right, #c79d5b, #f4e0be);
            padding: 2rem;
            text-align: center;
        }
        .product-info {
            margin-top: 1rem;
        }
        h1 {
            font-size: 3rem;
            color: #8a6a4f;
        }
        p.price {
            font-size: 2.5rem;
            color: #c79d5b;
            margin: 0.5rem 0;
        }
        .add-to-cart {
            background-color: #c79d5b;
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.2rem;
            cursor: pointer;
            margin-top: 1rem;
        }
        table.specs {
            width: 80%;
            margin-top: 2rem;
            text-align: left;
            border-collapse: collapse;
        }
        th, td {
            padding: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #c79d5b;
            color: white;
        }
    </style>
</head>
<body>
    <div class="wallpaper-hero">
        <h1>Luxury Velvet Wallpaper</h1>
        <p class="price">$2,499.00</p>
        <button class="add-to-cart">Add to Cart</button>
    </div>
    <div class="product-info">
        <table class="specs">
            <thead>
                <tr>
                    <th>Feature</th>
                    <th>Description</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>MATERIAL</td>
                    <td>Velvet with Gold Foil</td>
                </tr>
                <tr>
                    <td>FABRIC TYPE</td>
                    <td>High Gloss</td>
                </tr>
                <tr>
                    <td>SIZE</td>
                    <td>10m Roll</td>
                </tr>
                <tr>
                    <td>MATCHES WITH</td>
                    <td>Modern and Classic Interiors</td>
                </tr>
            </tbody>
        </table>
    </div>
</body>
</html>