Dining Rooms
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dining Rooms</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
}
.dining-room {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 20px;
padding: 15px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.dining-room h2 {
margin-top: 0;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Our Dining Rooms</h1>
</header>
<main>
<div class="dining-room">
<h2>Classic Dining Room</h2>
<p>A timeless design with elegant furniture and warm lighting, perfect for formal dinners.</p>
</div>
<div class="dining-room">
<h2>Modern Dining Room</h2>
<p>Sleek lines, minimalist decor, and innovative lighting solutions for a contemporary feel.</p>
</div>
<div class="dining-room">
<h2>Rustic Dining Room</h2>
<p>Natural wood elements and earthy tones create a cozy and inviting atmosphere.</p>
</div>
</main>
<footer>
<p>© 2023 Dining Rooms Showcase</p>
</footer>
</body>
</html>
Comments
Post a Comment