أجمل ما قيل في الحب، بالنسبة لي، جاءني على ورق أصفر مطوي داخل كتاب قديم لأمي. كان سطرًا لنزار قباني: “أحبكِ… أحبكِ… والبقية تأتي.” لم أفهم يومها كل البقية، لكنني فهمت أن الحب يبدأ بكلمة ويكمل حياته في ما بين السطور: في نظرة تُطمئن، ويدٍ تتأخر قليلًا كي لا تتركك تقع.
بعد سنوات، في ليلة انفصال طويلة، قرأت لخليل جبران: “الحب لا يعطي إلا ذاته ولا يأخذ إلا من ذاته. لا يملك ولا يُملَك.” شعرت أن الحب ليس معركة كسب، بل حضن اتساع. ومنذها صرت أؤمن بجمل صغيرة تضيء الطريق: “من يحبك لا يُتعبك بالشرح، يشرح لك العالم.” و”الحب وعدٌ صامت بأن نكون ضوءًا لبعضنا حين تنطفئ المدينة.”
💕 من أجمل الاقتباسات في الحب
كلمات خالدة تلامس القلوب
انسخ الكود وقم بلصقه في موقعك الإلكتروني
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>من أجمل الاقتباسات في الحب</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #6c5b7b 100%);
min-height: 100vh;
padding: 40px 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
color: white;
margin-bottom: 60px;
animation: fadeInDown 1s ease;
}
header h1 {
font-size: 3.5em;
margin-bottom: 15px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
header p {
font-size: 1.3em;
opacity: 0.95;
}
.quotes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.quote-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
animation: fadeInUp 0.8s ease;
animation-fill-mode: both;
}
.quote-card::before {
content: '❤️';
position: absolute;
top: -20px;
right: -20px;
font-size: 8em;
opacity: 0.05;
}
.quote-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-card:nth-child(1) { animation-delay: 0.1s; }
.quote-card:nth-child(2) { animation-delay: 0.2s; }
.quote-card:nth-child(3) { animation-delay: 0.3s; }
.quote-card:nth-child(4) { animation-delay: 0.4s; }
.quote-card:nth-child(5) { animation-delay: 0.5s; }
.quote-card:nth-child(6) { animation-delay: 0.6s; }
.quote-card:nth-child(7) { animation-delay: 0.7s; }
.quote-card:nth-child(8) { animation-delay: 0.8s; }
.quote-card:nth-child(9) { animation-delay: 0.9s; }
.quote-icon {
font-size: 3em;
margin-bottom: 20px;
display: block;
color: #ff6b9d;
}
.quote-text {
font-size: 1.3em;
line-height: 1.8;
color: #2c3e50;
margin-bottom: 20px;
font-weight: 500;
position: relative;
z-index: 1;
}
.quote-author {
text-align: left;
color: #7f8c8d;
font-size: 1em;
font-style: italic;
padding-top: 15px;
border-top: 2px solid #ff6b9d;
position: relative;
z-index: 1;
}
.featured-quote {
background: linear-gradient(135deg, rgba(255, 107, 157, 0.95) 0%, rgba(192, 108, 132, 0.95) 100%);
color: white;
grid-column: span 2;
padding: 60px;
text-align: center;
}
.featured-quote .quote-text {
font-size: 2em;
color: white;
margin-bottom: 30px;
}
.featured-quote .quote-author {
color: rgba(255, 255, 255, 0.9);
border-top-color: white;
text-align: center;
font-size: 1.2em;
}
.featured-quote::before {
color: rgba(255, 255, 255, 0.1);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
footer {
text-align: center;
color: white;
margin-top: 60px;
padding: 20px;
font-size: 1.1em;
opacity: 0.9;
}
@media (max-width: 768px) {
header h1 {
font-size: 2.5em;
}
.quotes-grid {
grid-template-columns: 1fr;
}
.featured-quote {
grid-column: span 1;
padding: 40px;
}
.featured-quote .quote-text {
font-size: 1.5em;
}
.quote-text {
font-size: 1.1em;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>💕 من أجمل الاقتباسات في الحب</h1>
<p>كلمات خالدة تلامس القلوب</p>
</header>
<div class="quotes-grid">
<div class="quote-card featured-quote">
<span class="quote-icon">❤️</span>
<div class="quote-text">
"الحب هو الجمال، والجمال هو الحقيقة، وهذا كل ما تعرفه على الأرض، وكل ما تحتاج أن تعرفه"
</div>
<div class="quote-author">— جون كيتس</div>
</div>
<div class="quote-card">
<span class="quote-icon">🌹</span>
<div class="quote-text">
"أن تحب يعني أن ترى معجزة غير مرئية للآخرين"
</div>
<div class="quote-author">— فرانسوا موريا</div>
</div>
<div class="quote-card">
<span class="quote-icon">💫</span>
<div class="quote-text">
"الحب لا يعني النظر إلى بعضنا البعض، بل النظر معاً في نفس الاتجاه"
</div>
<div class="quote-author">— أنطوان دو سانت إكزوبيري</div>
</div>
<div class="quote-card">
<span class="quote-icon">🌙</span>
<div class="quote-text">
"في كل قلب حب، في كل حب قصة، وفي كل قصة نهاية، لكن في الحياة كل نهاية هي بداية جديدة"
</div>
<div class="quote-author">— مجهول</div>
</div>
<div class="quote-card">
<span class="quote-icon">✨</span>
<div class="quote-text">
"الحب الحقيقي لا يأتي إلا مرة واحدة في العمر، ولكن إذا أتى في الوقت المناسب فمرة واحدة تكفي"
</div>
<div class="quote-author">— مثل عربي</div>
</div>
<div class="quote-card">
<span class="quote-icon">🦋</span>
<div class="quote-text">
"أعظم سعادة في الحياة هي الاقتناع بأننا محبوبون رغم عيوبنا"
</div>
<div class="quote-author">— فيكتور هوجو</div>
</div>
<div class="quote-card">
<span class="quote-icon">🌺</span>
<div class="quote-text">
"الحب ليس كلمات تقال، بل أفعال تفعل، ومشاعر تحس، وقلوب تتلاقى"
</div>
<div class="quote-author">— جبران خليل جبران</div>
</div>
<div class="quote-card">
<span class="quote-icon">💝</span>
<div class="quote-text">
"إذا كنت تحب شخصاً ما، دعه حراً. إذا عاد إليك فهو لك، وإذا لم يعد فلم يكن لك من البداية"
</div>
<div class="quote-author">— ريتشارد باخ</div>
</div>
<div class="quote-card">
<span class="quote-icon">🌟</span>
<div class="quote-text">
"الحب هو اللغة الوحيدة التي يفهمها القلب دون ترجمة"
</div>
<div class="quote-author">— مجهول</div>
</div>
<div class="quote-card">
<span class="quote-icon">🎭</span>
<div class="quote-text">
"الحب أعمى، ولكن الزواج يعيد له بصره"
</div>
<div class="quote-author">— جورج ليشتنبرج</div>
</div>
<div class="quote-card">
<span class="quote-icon">🌸</span>
<div class="quote-text">
"أحببتك أكثر من اللازم، وأكثر مما ينبغي، وأكثر مما يجب، وأكثر مما تستحق، وأقل مما تستحقه أنت في قلبي"
</div>
<div class="quote-author">— نزار قباني</div>
</div>
<div class="quote-card">
<span class="quote-icon">💖</span>
<div class="quote-text">
"أنا لا أحبك كما لو كنت وردة من الملح، أو توبازاً، أو سهماً من القرنفل، أنا أحبك كما تُحب بعض الأشياء المظلمة سراً"
</div>
<div class="quote-author">— بابلو نيرودا</div>
</div>
</div>
<footer>
<p>الحب هو أجمل ما في الحياة 💕</p>
</footer>
</div>
</body>
</html> 




