<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Artifacts Collection</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #444;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
}
.container {
padding: 20px;
}
.artifact {
background-color: #fff;
margin: 20px 0;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.artifact img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Home Artifacts Collection</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#collection">Collection</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="home">
<h2>Welcome to Our Artifacts Collection</h2>
<p>Explore our unique collection of home artifacts from different eras and cultures.</p>
</section>
<section id="collection">
<h2>Our Collection</h2>
<div class="artifact">
<img src="artifact1.jpg" alt="Artifact 1">
<h3>Artifact 1</h3>
<p>Description of Artifact 1. This artifact is from the 18th century and has a rich history.</p>
</div>
<div class="artifact">
<img src="artifact2.jpg" alt="Artifact 2">
<h3>Artifact 2</h3>
<p>Description of Artifact 2. This artifact is a rare piece from ancient Egypt.</p>
</div>
<div class="artifact">
<img src="artifact3.jpg" alt="Artifact 3">
<h3>Artifact 3</h3>
<p>Description of Artifact 3. This artifact is a beautifully crafted vase from the Ming Dynasty.</p>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are passionate about preserving and showcasing historical artifacts from around the world. Our collection includes pieces from various cultures and time periods.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or would like to learn more about our collection, please feel free to contact us.</p>
<p>Email: info@homeartifacts.com</p>
<p>Phone: (123) 456-7890</p>
</section>
</div>
<footer>
<p>© 2023 Home Artifacts Collection. All rights reserved.</p>
</footer>
</body>
</html>