موقع احترافي عن الخشب وتجارة الخشب
_____________________________________________________________________________________
الاكواد ✔️
_____________________________________________________________________________________
<!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: Arial, sans-serif;
direction: rtl;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #8B4513;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
.hero {
background-image: url('wood-background.jpg'); /* ضع صورة خلفية مناسبة */
background-size: cover;
background-position: center;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
}
.hero h1 {
font-size: 3rem;
text-shadow: 2px 2px 5px #000;
}
.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: #fff;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.product img {
width: 100%;
height: 200px;
object-fit: cover;
}
.product h3 {
margin: 10px 0;
}
.product p {
color: #8B4513;
font-weight: bold;
}
footer {
background-color: #8B4513;
color: #fff;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
footer .social a {
margin: 0 10px;
color: #fff;
text-decoration: none;
}
</style>
</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="wood1.jpg" alt="خشب البلوط">
<h3>خشب البلوط</h3>
<p>السعر: $50 للمتر</p>
</div>
<div class="product">
<img src="wood2.jpg" alt="خشب الزان">
<h3>خشب الزان</h3>
<p>السعر: $60 للمتر</p>
</div>
<div class="product">
<img src="wood3.jpg" alt="خشب السنديان">
<h3>خشب السنديان</h3>
<p>السعر: $70 للمتر</p>
</div>
</div>
</section>
<section id="contact" class="container">
<h2>اتصل بنا</h2>
<p>للتواصل معنا، يرجى إرسال بريد إلكتروني إلى: info@woodtrade.com</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>