← back to Model Arena

data/artifacts/1219c364c3d2/qwen3-14b.html

165 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>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Georgia', serif;
      background: linear-gradient(135deg, #1e1e2f 0%, #2a0f47 100%);
      color: #fff;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      background: #2a0f47;
      padding: 40px 20px;
      text-align: center;
      flex-shrink: 0;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
      color: #ccc;
    }

    .hero {
      background: linear-gradient(135deg, #1e1e2f 0%, #2a0f47 100%);
      padding: 60px 20px;
      text-align: center;
      flex-grow: 1;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.1rem;
      color: #ccc;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .price {
      font-size: 2.2rem;
      color: #ffd700;
      margin: 20px 0;
    }

    .cta {
      display: inline-block;
      background: #fff;
      color: #2a0f47;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta:hover {
      background: #f5f5f5;
    }

    .specs {
      background: #2a0f47;
      padding: 40px 20px;
      text-align: center;
    }

    .specs table {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      border-collapse: collapse;
    }

    .specs th,
    .specs td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #444;
    }

    .specs th {
      background: #1e1e2f;
      color: #fff;
    }

    .specs td {
      color: #ccc;
    }

    footer {
      background: #1e1e2f;
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
      color: #888;
    }
  </style>
</head>
<body>
  <header>
    <h1>Luxury Wallpaper Collection</h1>
    <p>Elevate your interior design with handcrafted, high-end wall coverings.</p>
  </header>

  <div class="hero">
    <h2>Ultra-Luxury Velvet Texture</h2>
    <p>Experience the richness of deep, hand-selected fabrics designed to transform any space into a sanctuary of elegance.</p>
    <div class="price">$299.00 per square meter</div>
    <a href="#" class="cta">Add to Cart</a>
  </div>

  <div class="specs">
    <h2>Product Specifications</h2>
    <table>
      <tr>
        <th>Material</th>
        <td>100% Premium Velvet</td>
      </tr>
      <tr>
        <th>Width</th>
        <td>1.5 meters</td>
      </tr>
      <tr>
        <th>Pattern Repeat</th>
        <td>60cm</td>
      </tr>
      <tr>
        <th>Available Colors</th>
        <td>Navy, Emerald, Gold, Black</td>
      </tr>
      <tr>
        <th>Installation</th>
        <td>Professional Recommended</td>
      </tr>
      <tr>
        <th>Warranty</th>
        <td>5 years</td>
      </tr>
    </table>
  </div>

  <footer>
    &copy; 2025 Luxury Interiors. All rights reserved.
  </footer>
</body>
</html>