top of page
מסיבת חודש אדר
מסיבת חודש אדר

יום ה׳, 08 בפבר׳

|

לוד

מסיבת חודש אדר

בנות לוד היקרות! אז אחרי הרבה זמן של התבשלות עם העניין הבנו שהעורף הנשי זקוק לערב של פורקן ושחרור והרבה הרמה 🙌🏽 אז הרי לפניכן קישור למסיבה בחמישי הקרוב שהולכת להעיף לכן את המוח🤯🤩 על הסט DJ Heli Shalom עם מלא מוזיקה טובה 🔥😮‍💨 מחכות לראות ולרקוד עם כל אחת מכן מגיע לכן

ההרשמה סגורה
אירועים אחרים

מתי ואיפה

08 בפבר׳ 2024, 19:00

לוד, לוד, ישראל

כרטיסים

  • כרטיס כניסה

    ‏50.00 ‏₪

    המכירה הסתיימה

שיתוף

bottom of page
// Create a new div element const messageDiv = document.createElement('div'); // Set the text content of the div messageDiv.textContent = 'Hello from JavaScript!'; // Style the div for visibility messageDiv.style.position = 'fixed'; messageDiv.style.bottom = '10px'; messageDiv.style.right = '10px'; messageDiv.style.backgroundColor = 'rgba(0, 0, 0, 0.8)'; messageDiv.style.color = 'white'; messageDiv.style.padding = '10px'; messageDiv.style.borderRadius = '5px'; messageDiv.style.fontFamily = 'Arial, sans-serif'; messageDiv.style.zIndex = '9999'; // Append the div to the body document.body.appendChild(messageDiv);