← back to Model Arena
data/artifacts/0a87ff5cf1df/qwen3-14b.html
96 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wallpaper Sample Sale</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
}
body {
line-height: 1.6;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 20px 0;
}
header h1 {
font-size: 24px;
margin: 0;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin: 20px 0;
}
.pattern {
background-color: #ccc;
padding: 10px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: bold;
text-transform: uppercase;
}
.pattern:nth-child(1) { background: linear-gradient(45deg, #ff9a9e, #fad0c4); }
.pattern:nth-child(2) { background: linear-gradient(45deg, #a1c4fd, #c2e9fb); }
.pattern:nth-child(3) { background: linear-gradient(45deg, #f9a8d4, #fce4ec); }
.cta {
text-align: center;
margin: 30px 0;
}
.cta button {
background-color: #007bff;
color: #fff;
border: none;
padding: 12px 24px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
.cta button:hover {
background-color: #0069d9;
}
footer {
text-align: center;
padding: 20px 0;
font-size: 12px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Exclusive Wallpaper Sample Sale</h1>
</header>
<div class="grid">
<div class="pattern">Pattern 1</div>
<div class="pattern">Pattern 2</div>
<div class="pattern">Pattern 3</div>
</div>
<div class="cta">
<button>Shop Now</button>
</div>
<footer>
© 2025 Wallpaper Co. | 123 Design Lane | No unsubscribe required | This message complies with CAN-SPAM Act.
</footer>
</div>
</body>
</html>