Qwen2.5-Max
luxury classic bedroom design
modern luxury bedroom design
elegant modern luxury kitchen room design
modern luxury bedroom design
elegant modern luxury kitchen room design
modern luxury working room
Qwen2.5-Max1:09 PM
Artifacts luxury classic bedroom design
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luxury Classic Bedroom Design</title>
<style>
body {
margin: 0;
font-family: 'Times New Roman', serif;
background-color: #f4e8d9;
color: #333;
}
header {
background-color: #7a5c4b;
color: white;
text-align: center;
padding: 2rem 0;
}
h1 {
font-size: 2.5rem;
margin: 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 2rem;
gap: 2rem;
}
.design-card {
background-color: white;
border: 1px solid #ddd;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
width: 300px;
transition: transform 0.3s ease-in-out;
}
.design-card:hover {
transform: scale(1.05);
}
.design-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.design-card-content {
padding: 1rem;
}
.design-card h2 {
font-size: 1.5rem;
margin: 0 0 0.5rem;
}
.design-card p {
font-size: 1rem;
line-height: 1.5;
margin: 0;
}
footer {
background-color: #7a5c4b;
color: white;
text-align: center;
padding: 1rem 0;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Luxury Classic Bedroom Designs</h1>
</header>
<div class="container">
<div class="design-card">
<img src="https://via.placeholder.com/300x200?text=Classic+Bedroom+1" alt="Luxury Bedroom 1">
<div class="design-card-content">
<h2>Design 1</h2>
<p>A timeless classic bedroom with rich mahogany furniture and golden accents.</p>
</div>
</div>
<div class="design-card">
<img src="https://via.placeholder.com/300x200?text=Classic+Bedroom+2" alt="Luxury Bedroom 2">
<div class="design-card-content">
<h2>Design 2</h2>
<p>Elegant design featuring a tufted headboard and crystal chandelier.</p>
</div>
</div>
<div class="design-card">
<img src="https://via.placeholder.com/300x200?text=Classic+Bedroom+3" alt="Luxury Bedroom 3">
<div class="design-card-content">
<h2>Design 3</h2>
<p>Warm tones and intricate moldings create a cozy yet luxurious ambiance.</p>
</div>
</div>
</div>
<footer>
© 2023 Luxury Bedroom Designs
</footer>
</body>
</html>
Artifacts Out Put
elegant modern luxury living room design
Artifacts Out Put
modern luxury bedroom design
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Luxury Bedroom Design</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.bedroom {
position: relative;
width: 90%;
max-width: 1200px;
height: 600px;
background: linear-gradient(135deg, #2c3e50, #4ca1af);
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.wall-art {
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 200px;
background: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.bed {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
width: 60%;
height: 200px;
background: #fff;
border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.bed::before {
content: '';
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 60px;
background: #eaeaea;
border-radius: 20px 20px 0 0;
}
.nightstand {
position: absolute;
bottom: 70px;
width: 100px;
height: 100px;
background: #dfe6e9;
border-radius: 10px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.nightstand.left {
left: 10%;
}
.nightstand.right {
right: 10%;
}
.lamp {
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background: #f39c12;
border-radius: 50%;
box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}
.rug {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 150px;
background: #ecf0f1;
border-radius: 50%;
opacity: 0.8;
}
.text {
position: absolute;
top: 20px;
left: 20px;
font-size: 24px;
font-weight: bold;
color: #fff;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<div class="bedroom">
<div class="text">Modern Luxury Bedroom</div>
<div class="wall-art"></div>
<div class="bed">
<div class="lamp"></div>
</div>
<div class="nightstand left"></div>
<div class="nightstand right"></div>
<div class="rug"></div>
</div>
</body>
</html>
Artifacts Out Put
elegant modern luxury kitchen room design
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luxury Kitchen Design</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.kitchen-container {
position: relative;
width: 90%;
max-width: 1200px;
height: 80vh;
background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
display: flex;
flex-direction: column;
}
.kitchen-header {
height: 20%;
background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 2rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
}
.kitchen-body {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 20px;
}
.kitchen-item {
background-color: #fff;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: transform 0.3s ease-in-out;
}
.kitchen-item:hover {
transform: translateY(-10px);
}
.kitchen-item img {
width: 100%;
height: auto;
display: block;
}
.kitchen-item-description {
padding: 15px;
text-align: center;
font-size: 1rem;
color: #555;
}
.footer {
text-align: center;
padding: 10px;
background-color: #f9f9fb;
font-size: 0.9rem;
color: #777;
}
</style>
</head>
<body>
<div class="kitchen-container">
<div class="kitchen-header">Luxury Kitchen Design</div>
<div class="kitchen-body">
<div class="kitchen-item">
<img src="https://via.placeholder.com/600x400?text=Modern+Cabinets" alt="Modern Cabinets">
<div class="kitchen-item-description">Modern Cabinets</div>
</div>
<div class="kitchen-item">
<img src="https://via.placeholder.com/600x400?text=Marble+Countertops" alt="Marble Countertops">
<div class="kitchen-item-description">Marble Countertops</div>
</div>
<div class="kitchen-item">
<img src="https://via.placeholder.com/600x400?text=Smart+Appliances" alt="Smart Appliances">
<div class="kitchen-item-description">Smart Appliances</div>
</div>
<div class="kitchen-item">
<img src="https://via.placeholder.com/600x400?text=Designer+Lighting" alt="Designer Lighting">
<div class="kitchen-item-description">Designer Lighting</div>
</div>
</div>
<div class="footer">Explore the elegance of modern luxury kitchens</div>
</div>
</body>
</html>
Artifacts Out Put
modern luxury working room
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Luxury Working Room</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.room {
position: relative;
width: 90%;
max-width: 1200px;
height: 80%;
background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
overflow: hidden;
display: flex;
flex-direction: column;
}
.wall {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 30%;
background: linear-gradient(135deg, #dcdcdc 0%, #bfbfbf 100%);
z-index: 1;
}
.window {
position: absolute;
top: 5%;
left: 50%;
transform: translateX(-50%);
width: 60%;
height: 25%;
background: rgba(255, 255, 255, 0.6);
border-radius: 15px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-around;
align-items: center;
}
.window div {
width: 5px;
height: 70%;
background: rgba(255, 255, 255, 0.8);
border-radius: 5px;
}
.desk {
position: absolute;
bottom: 10%;
left: 50%;
transform: translateX(-50%);
width: 70%;
height: 30%;
background: #3a3a3a;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
}
.laptop {
width: 50%;
height: 60%;
background: #2c2c2c;
border-radius: 10px;
position: relative;
}
.laptop::before {
content: '';
position: absolute;
top: -30%;
left: 5%;
width: 90%;
height: 30%;
background: #1a1a1a;
border-radius: 10px 10px 0 0;
}
.chair {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 20%;
height: 15%;
background: #4d4d4d;
border-radius: 10px;
}
.chair::before {
content: '';
position: absolute;
top: -20%;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 20%;
background: #4d4d4d;
border-radius: 50%;
}
.plant {
position: absolute;
bottom: 15%;
right: 10%;
width: 10%;
height: 20%;
}
.plant::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 30%;
height: 100%;
background: #4caf50;
border-radius: 10px;
}
.plant::after {
content: '';
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 50%;
height: 50%;
background: #4caf50;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="room">
<div class="wall"></div>
<div class="window">
<div></div>
<div></div>
<div></div>
</div>
<div class="desk">
<div class="laptop"></div>
</div>
<div class="chair"></div>
<div class="plant"></div>
</div>
</body>
</html>
Artifacts Out Put
7-2-2568 by Vorapat & Orachorn
Comments
Post a Comment