_____________________________________________________________________________________
الاكواد✔️🎯
____________________________________________________________________________________
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="موقع متخصص في تجارة الزرع الصناعي بجودة عالية وأشكال متنوعة">
<title>تجارة الزرع الصناعي</title>
<style>
body {
margin: 0;
font-family: 'Cairo', sans-serif;
direction: rtl;
background-color: #f3f6f4;
color: #333;
}
header {
background-color: #2e8b57;
color: #fff;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-size: 1.8rem;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 1rem;
}
nav a:hover {
text-decoration: underline;
}
.hero {
background-image: url('plants-background.jpg'); /* ضع صورة خلفية مناسبة */
background-size: cover;
background-position: center;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
position: relative;
}
.hero::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
}
.hero h1 {
font-size: 3.5rem;
text-shadow: 3px 3px 7px #000;
z-index: 1;
}
.container {
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.product {
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.product img {
width: 100%;
height: 200px;
object-fit: cover;
}
.product h3 {
margin: 15px 0;
font-size: 1.5rem;
}
.product p {
color: #2e8b57;
font-weight: bold;
margin-bottom: 15px;
}
footer {
background-color: #2e8b57;
color: #fff;
text-align: center;
padding: 15px 0;
margin-top: 40px;
font-size: 0.9rem;
}
footer .social a {
margin: 0 15px;
color: #fff;
text-decoration: none;
font-size: 1.2rem;
}
footer .social a:hover {
text-decoration: underline;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>تجارة الزرع الصناعي</h1>
<nav>
<a href="#about">من نحن</a>
<a href="#products">منتجاتنا</a>
<a href="#contact">اتصل بنا</a>
</nav>
</header>
<section class="hero">
<h1>زرع صناعي بجودة عالية وتصاميم مذهلة</h1>
</section>
<section id="about" class="container">
<h2>من نحن</h2>
<p>نحن متخصصون في تقديم أفضل أنواع الزرع الصناعي لإضافة لمسة من الجمال إلى مساحتك. منتجاتنا تتميز بالجودة والتنوع لتناسب جميع الأذواق.</p>
</section>
<section id="products" class="container">
<h2>منتجاتنا</h2>
<div class="products">
<div class="product">
<img src="plant1.jpg" alt="زرع صناعي صغير">
<h3>زرع صناعي صغير</h3>
<p>السعر: $20</p>
</div>
<div class="product">
<img src="plant2.jpg" alt="زرع صناعي متوسط">
<h3>زرع صناعي متوسط</h3>
<p>السعر: $35</p>
</div>
<div class="product">
<img src="plant3.jpg" alt="زرع صناعي كبير">
<h3>زرع صناعي كبير</h3>
<p>السعر: $50</p>
</div>
</div>
</section>
<section id="contact" class="container">
<h2>اتصل بنا</h2>
<p>للتواصل معنا، يرجى إرسال بريد إلكتروني إلى: info@plants.trade</p>
<p>أو الاتصال على الرقم: +123456789</p>
</section>
<footer>
<p>جميع الحقوق محفوظة © 2025 تجارة الزرع الصناعي</p>
<div class="social">
<a href="#">فيسبوك</a>
<a href="#">تويتر</a>
<a href="#">إنستجرام</a>
</div>
</footer>
</body>
</html>
___________________________________________________________________________________
شرح الكود/
___________________________________________________________________________________