<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مدونة أنيقة</title>
<style>
/* تحسين الخطوط */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #4A90E2, #FF6B6B);
color: #333;
}
.container {
width: 90%;
max-width: 800px;
margin: auto;
background: white;
padding: 20px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin-top: 20px;
}
h1 {
text-align: center;
color: #4A90E2;
font-size: 40px;
font-weight: bold;
text-transform: uppercase;
}
a {
color: #FF6B6B;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
color: #D32F2F;
}
.post {
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
border: 1px solid #ddd;
background: #f9f9f9;
transition: all 0.3s ease-in-out;
}
.post:hover {
background: #fff3f3;
transform: translateY(-5px);
}
.footer {
text-align: center;
padding: 20px;
background: #222;
color: white;
margin-top: 30px;
border-radius: 0 0 10px 10px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>مدونة أنيقة</h1>
<div class="post">
<h2><a href="#">عنوان المقال الأول</a></h2>
<p>هذا نص تجريبي للمقال الأول. يمكنك استبداله بمحتوى المدونة الحقيقي.</p>
</div>
<div class="post">
<h2><a href="#">عنوان المقال الثاني</a></h2>
<p>هذا نص تجريبي للمقال الثاني. يمكنك تخصيصه كما تريد.</p>
</div>
<div class="post">
<h2><a href="#">عنوان المقال الثالث</a></h2>
<p>هذا نص تجريبي للمقال الثالث. أضف محتوى غني لجذب القراء.</p>
</div>
<div class="footer">
جميع الحقوق محفوظة © 2025 | تصميم أنيق وحديث
</div>
</div>
</body>
</html>
إرسال تعليق