You are on page 1of 3

<!

DOCTYPE html>
<html>
<head>
<title>E-commerce Site</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #003366;
color: #fff;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 10px;
}

nav ul {
display: flex;
flex-direction: row;
list-style: none;
}

nav ul li {
margin-right: 10px;
}

nav ul li:last-child {
margin-right: 0;
}

nav ul li a {
color: #fff;
text-decoration: none;
padding: 5px;
transition: all 0.3s ease;
}

nav ul li a:hover {
background-color: #fff;
color: #003366;
}

.hero {
background-color: #e6f2ff;
color: #003366;
text-align: center;
padding: 50px;
}

.hero h2 {
font-size: 3em;
margin: 0;
}

.hero p {
font-size: 1.5em;
margin: 20px 0;
}

.btn {
background-color: #003366;
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;

</style>
<header>
<h1 class="logo">E-commerce Site</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 Us</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Welcome to our E-commerce site!</h2>
<p>Find the best products at the best prices.</p>
<a href="#" class="btn">Shop Now</a>
</section>
<section class="featured-products">
<h2>Featured Products</h2>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product">
<h3>Product Name</h3>
<p>$9.99</p>
<a href="#" class="btn">Add to Cart</a>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product">
<h3>Product Name</h3>
<p>$9.99</p>
<a href="#" class="btn">Add to Cart</a>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product">
<h3>Product Name</h3>
<p>$9.99</p>
<a href="#" class="btn">Add to Cart</a>
</div>
</section>
</main>
<footer>
<p>&copy; 2023 E-commerce Site. All rights reserved.</p>
</footer>
</body>
</html>

You might also like