<!DOCTYPE html>
<html>
<head>
<title>Skincare Products</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Our Skincare Products</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section id="products">
<h2>Our Products</h2>
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h3>Product 1</h3>
<p>Description of Product 1.</p>
<p><strong>Price: $XX</strong></p>
<button>Add to Cart</button>
</div>
<!-- Repeat the product structure for other products -->
</section>
<section id="about">
<h2>About Us</h2>
<p>We are passionate about providing high-quality skincare products...</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions, feel free to contact us...</p>
</section>
<footer>
<p>© 2023 Skincare Products</p>
</footer>
</body>
</html>