top of page
נובילוד 2025
נובילוד 2025

יום ג׳, 31 בדצמ׳

|

לוד

נובילוד 2025

יכיתם כל כך יפה, אז איך אפשר שלא??? נובילוד 2025, מסיימים שנה אזרחית ופותחים שנה חדשה בתוצרת!! מתי? יום שלישי, 31.12, בשעה 21:00 איפה? מתחם תוצרת הארץ, החשמונאים 34, לוד מה בתכנית? 🎤 די-ג׳יי שירים ת׳אווירה 🍺 אלכוהול במחירים מוזלים 🪩 אווירה חשמל וריקודים עד שתיפלו מהרגליים אז תכינו את הרגליים

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

מתי ואיפה

31 בדצמ׳ 2024, 21:00 – 02 בינו׳ 2025, 1:00

לוד, החשמונאים 34, לוד, ישראל

שיתוף

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);