<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artistic Creations</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
margin: 20px;
background-color: #fff;
border: 1px solid #ccc;
}
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 20px;
}
.gallery img {
max-width: 100%;
height: auto;
display: block;
}
</style>
</head>
<body>
<header>
<h1>Artistic Creations</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Artists</a>
<a href="#">Gallery</a>
<a href="#">Events</a>
<a href="#">Contact</a>
</nav>
<section>
<h2>Welcome to Artistic Creations</h2>
<p>Welcome to our website dedicated to celebrating art in all its
forms.</p>
</section>
<section>
<h2>Featured Artists</h2>
<div class="gallery">
<img src="artist1.jpg" alt="Artist 1">
<img src="artist2.jpg" alt="Artist 2">
<img src="artist3.jpg" alt="Artist 3">
<img src="artist4.jpg" alt="Artist 4">
</div>
</section>
<section>
<h2>Gallery</h2>
<div class="gallery">
<img src="artwork1.jpg" alt="Artwork 1">
<img src="artwork2.jpg" alt="Artwork 2">
<img src="artwork3.jpg" alt="Artwork 3">
<img src="artwork4.jpg" alt="Artwork 4">
<img src="artwork5.jpg" alt="Artwork 5">
<img src="artwork6.jpg" alt="Artwork 6">
</div>
</section>
<section>
<h2>Upcoming Events</h2>
<p>Stay tuned for information about our upcoming exhibitions and art
shows.</p>
</section>
<section>
<h2>Contact Us</h2>
<p>You can reach us at contact@artisticcreations.com.</p>
</section>
<footer>
<p>© 2024 Artistic Creations. All rights reserved.</p>
</footer>
</body>
</html>