اكود html css
لموقع عن بيع الاجهزة الكهربائية
_____________________________________________________________________________________
الاكواد ✔️
_____________________________________________________________________________________
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ElectroMart - Your Trusted Electronics Store</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #004d99;
color: #fff;
padding: 15px 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #0066cc;
padding: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.hero {
background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero h1 {
font-size: 3rem;
}
.container {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.product {
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
overflow: hidden;
text-align: center;
}
.product img {
width: 100%;
height: 200px;
object-fit: cover;
}
.product h3 {
font-size: 1.2rem;
margin: 15px 0;
}
.product p {
font-size: 1rem;
color: #666;
margin: 0 0 15px;
}
.product button {
background-color: #004d99;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
margin-bottom: 15px;
}
.product button:hover {
background-color: #003366;
}
footer {
text-align: center;
background-color: #004d99;
color: white;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>ElectroMart</h1>
<p>Your Trusted Electronics Store</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#products">Products</a>
<a href="#contact">Contact Us</a>
<a href="#about">About</a>
</nav>
<section class="hero">
<h1>Discover the Best Electronics at Unbeatable Prices!</h1>
</section>
<section id="products" class="container">
<h2>Our Products</h2>
<div class="products">
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Product 1">
<h3>Smart TV</h3>
<p>$499.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Product 2">
<h3>Refrigerator</h3>
<p>$799.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Product 3">
<h3>Microwave</h3>
<p>$149.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Product 4">
<h3>Washing Machine</h3>
<p>$649.99</p>
<button>Add to Cart</button>
</div>
</div>
</section>
<footer>
<p>© 2025 ElectroMart. All rights reserved.</p>
</footer>
</body>
</html>
___________________________________________________________________________________
شرح الكود