← back to Model Arena

data/artifacts/042186bcb1d4/qwen3-14b.html

51 lines

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Exclusive Wallpaper Sample Sale</title>
  <style>
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; font-family: Arial, sans-serif; background: #f4f4f4; color: #333; }
    body { display: flex; flex-direction: column; min-height: 100vh; }
    header { background: #007BFF; color: #fff; padding: 20px; text-align: center; }
    main { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; width: 100%; max-width: 900px; }
    .pattern { background: #ccc; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .pattern img { width: 100%; height: 200px; object-fit: cover; }
    .pattern h3 { padding: 10px; margin: 0; font-size: 16px; }
    .cta { margin-top: 30px; text-align: center; }
    .cta a { display: inline-block; padding: 12px 24px; background: #007BFF; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; }
    footer { background: #333; color: #fff; text-align: center; padding: 15px; font-size: 12px; }
    footer a { color: #007BFF; text-decoration: underline; }
  </style>
</head>
<body>
  <header>
    <h1>Exclusive Wallpaper Sample Sale</h1>
    <p>Get 20% off all samples when you order within the next 48 hours!</p>
  </header>
  <main>
    <div class="grid">
      <div class="pattern">
        <img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 100 100'><defs><linearGradient id='grad1' x1='0%' y1='0%' x2='100%' y2='100%'><stop offset='0%' stop-color='red'/><stop offset='100%' stop-color='blue'/></linearGradient></defs><rect width='100%' height='100%' fill='url(#grad1)'/></svg>" alt="Pattern 1">
        <h3>Modern Gradient 1</h3>
      </div>
      <div class="pattern">
        <img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 100 100'><defs><linearGradient id='grad2' x1='0%' y1='100%' x2='100%' y2='0%'><stop offset='0%' stop-color='green'/><stop offset='100%' stop-color='yellow'/></linearGradient></defs><rect width='100%' height='100%' fill='url(#grad2)'/></svg>" alt="Pattern 2">
        <h3>Elegant Gradient 2</h3>
      </div>
      <div class="pattern">
        <img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 100 100'><defs><linearGradient id='grad3' x1='0%' y1='0%' x2='0%' y2='100%'><stop offset='0%' stop-color='purple'/><stop offset='100%' stop-color='pink'/></linearGradient></defs><rect width='100%' height='100%' fill='url(#grad3)'/></svg>" alt="Pattern 3">
        <h3>Artistic Gradient 3</h3>
      </div>
    </div>
    <div class="cta">
      <a href="#">Shop Now and Save 20%</a>
    </div>
  </main>
  <footer>
    <p>© 2025 Wallpaper Co. | <a href="#">Unsubscribe</a> | <a href="#">Privacy Policy</a></p>
  </footer>
</body>
</html>