← back to Model Arena
data/artifacts/248ea25bf69b/gemma3-12b.html
139 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 - Celadon Wallpaper</title>
<style>
body {
font-family: 'Playfair Display', serif; /* Placeholder - replace with actual font */
margin: 0;
padding: 0;
background-color: #f9f7f6;
color: #333;
line-height: 1.6;
}
/* Hero Area (CSS Gradient Placeholder) */
.hero {
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 1)); /* Placeholder gradient - replace with desired effect */
padding: 60px;
text-align: center;
}
h1 {
font-size: 3em;
margin-bottom: 10px;
color: #4a4a4a;
}
.subtitle {
font-style: italic;
font-size: 1.2em;
color: #777;
}
/* Product Details */
.product-details {
padding: 40px;
max-width: 960px;
margin: 0 auto;
}
.price {
font-size: 1.5em;
font-weight: bold;
color: #a87b3d; /* Gold/Bronze Accent */
}
button {
background-color: #a87b3d;
color: white;
border: none;
padding: 12px 24px;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #8a692d;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 30px;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f5f5f5;
font-weight: bold;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.product-details {
padding: 20px;
}
h1 {
font-size: 2.5em;
}
button {
display: block;
margin: 20px auto;
}
}
</style>
</head>
<body>
<div class="hero">
<h1>Kyoto Silk Wallpaper</h1>
<p class="subtitle">Celadon Colorway</p>
</div>
<div class="product-details">
<h2>Exquisite Grasscloth Texture</h2>
<p>Immerse your space in the timeless elegance of Kyoto Silk, a luxurious grasscloth wallpaper handcrafted in Japan. The Celadon colorway evokes a sense of tranquility and natural beauty.</p>
<div class="price">$148/roll</div>
<button onclick="addToCart()">Add to Cart</button>
<h3>Specifications</h3>
<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! (Simulated)"); // Simple simulation of adding to cart. Replace with actual logic.
}
</script>
</div>
</body>
</html>