Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hadi's Products</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background: #f5f5f5;
color: #333;
}
header {
background: #ff6b6b;
color: white;
padding: 1rem 2rem;
text-align: center;
}
header h1 {
font-size: 2rem;
}
nav {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 0.5rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
}
section {
padding: 2rem;
max-width: 1000px;
margin: 0 auto;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin-top: 1rem;
}
.product-card {
background: white;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.2s;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-card img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 0.5rem;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Hadi's Products</h1>
<nav>
<a href="#about">About</a>
<a href="#products">Products</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>About Hadi</h2>
<p>Welcome to Hadi's shop! We offer a range of high-quality products made with love. Check out our collection below and find your next favorite item!</p>
</section>
<section id="products">
<h2>Our Products</h2>
<div class="products">
<div class="product-card">
<img src="https://via.placeholder.com/200x150" alt="Product 1">
<h3>Product 1</h3>
<p>$20</p>
</div>
<div class="product-card">
<img src="https://via.placeholder.com/200x150" alt="Product 2">
<h3>Product 2</h3>
<p>$35</p>
</div>
<div class="product-card">
<img src="https://via.placeholder.com/200x150" alt="Product 3">
<h3>Product 3</h3>
<p>$50</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Hadi</h2>
<p>Email: hadi@example.com</p>
<p>Phone: +123 456 7890</p>
</section>
<footer>
© 2026 Hadi's Products. All rights reserved.
</footer>
</body>
</html>2
2
3KB
3KB
117.0ms
164.0ms
191.0ms