← back to Model Arena

data/artifacts/248ea25bf69b/hermes3-8b.html

83 lines

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Kyoto Silk Grasscloth Wallpaper</title>
    <style>
        body {
            font-family: 'Palatino Linotype', serif;
            background-color: #f0fff4;
            margin: 0;
            padding: 0;
        }
        .hero {
            height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2em;
            text-align: center;
            background-image: linear-gradient(135deg, #a1c4fd, #e8ebf8);
        }
        .price {
            margin-top: 20px;
            font-size: 1.5em;
        }
        .add-cart-btn {
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #a1c4fd;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.2em;
        }
        table.spec-table {
            width: 100%;
            margin-top: 30px;
            border-collapse: collapse;
        }
        th, td {
            text-align: left;
            padding: 8px;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #f2f2f2;
        }
    </style>
</head>
<body>
    <div class="hero">
        Kyoto Silk
    </div>
    <div class="price">
        $148/roll
    </div>
    <button class="add-cart-btn" onclick="addToCart()">Add to Cart</button>
    <table class="spec-table">
        <tr>
            <th>Material:</th>
            <td>Grasscloth</td>
        </tr>
        <tr>
            <th>Width:</th>
            <td>36in</td>
        </tr>
        <tr>
            <th>Repeat:</th>
            <td>Random</td>
        </tr>
        <tr>
            <th>Origin:</th>
            <td>Japan</td>
        </tr>
    </table>
    <script>
        function addToCart() {
            alert('Added to cart!');
        }
    </script>
</body>
</html>