<title>عيد ميلاد ريتاج</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(to top, #ff9a9e, #fad0c4);
font-family: Arial;
text-align: center;
overflow: hidden;
}
/* العنوان */
h1 {
color: white;
margin-top: 30px;
font-size: 38px;
}
/* النص */
p {
color: white;
font-size: 22px;
}
/* اسم سمسومة يلمع */
.glow {
font-size: 24px;
color: #fff;
margin-top: 10px;
animation: glowEffect 2s infinite alternate;
}
@Keyframes glowEffect {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #ff1a75, 0 0 40px #ff1a75;
}
}
/* الرسالة */
.message {
width: 80%;
margin: 20px auto;
color: white;
font-size: 20px;
line-height: 1.8;
}
/* الزهرة */
.flower {
position: relative;
width: 150px;
height: 150px;
margin: 40px auto;
}
.petal {
width: 60px;
height: 60px;
background: pink;
border-radius: 50%;
position: absolute;
animation: pulse 3s infinite;
}
.petal:nth-child(1) { top: 0; left: 45px; }
.petal:nth-child(2) { top: 45px; left: 0; }
.petal:nth-child(3) { top: 45px; right: 0; }
.petal:nth-child(4) { bottom: 0; left: 45px; }
.center {
width: 50px;
height: 50px;
background: yellow;
border-radius: 50%;
position: absolute;
top: 50px;
left: 50px;
}
@Keyframes pulse {
0%,100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
/* القلوب */
.heart {
position: absolute;
animation: floatUp 6s linear infinite;
}
@Keyframes floatUp {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(-800px); opacity: 0; }
}
.footer {
margin-top: 15px;
color: white;
}
</style>
🎉 عيد ميلاد سعيد يا ريتاج 🎉
عيد ميلاد سعيد يا حبيبة قلبي ❤️
💌 إهداء من سمسومة 💌
يا ريتاج... 💖
في هاد اليوم الجميل، حبيت نقولك بلي وجودك في حياتي هو أجمل حاجة صراتلي 🥺
نحبك بزاااااف أكثر مما تتصوري، وكل نهار يزيد حبي ليك أكثر ❤️
نتمنالك عام مليان فرح وسعادة، ونبقى دايماً نضحكوك ونكون سبب في ابتسامتك 😊
انتي موش غير حبيبة قلبي... انتي روحي وكل دنيتي 🌍💘
عيد ميلادك هو عيد لقلبي أنا 💕
ونتمنى نعيش معاك أجمل لحظات العمر كامل 💫
2009/04/17
<script>
function createHeart() {
const heart = document.createElement("div");
heart.className = "heart";
heart.innerHTML = "❤️";
heart.style.left = Math.random() * window.innerWidth + "px";
heart.style.fontSize = (15 + Math.random() * 30) + "px";
document.body.appendChild(heart);
setTimeout(() => {
heart.remove();
}, 6000);
}
setInterval(createHeart, 250);
</script>
🎉 عيد ميلاد سعيد يا ريتاج 🎉
عيد ميلاد سعيد يا حبيبة قلبي ❤️
في هاد اليوم الجميل، حبيت نقولك بلي وجودك في حياتي هو أجمل حاجة صراتلي 🥺 نحبك بزاااااف أكثر مما تتصوري، وكل نهار يزيد حبي ليك أكثر ❤️
نتمنالك عام مليان فرح وسعادة، ونبقى دايماً نضحكوك ونكون سبب في ابتسامتك 😊
انتي موش غير حبيبة قلبي... انتي روحي وكل دنيتي 🌍💘
عيد ميلادك هو عيد لقلبي أنا 💕
ونتمنى نعيش معاك أجمل لحظات العمر كامل 💫