top of page
ערב סרט
ערב סרט

יום ג׳, 28 במאי

|

יס פלנט, חיפה

ערב סרט

בואו להרגיש כמו כוכבי קולנוע לערב אחד🎬💫 תוצרת הארץ- פרויקט התמנון חיפה מזמינים אתכם לערב סרט של צפונים מפונים לחיפה והאיזור לראות ביחד את הסרט "הכפיל"! ניפגש ביום שלישי 28.05 בשעה 19:00 ביס פלאנט, חיפה. הכניסה מותנית בהרשמה מראש. מחכים לכם📽🚀 התגעגענו

הכרטיסים לא במבצע
הציגו אירועים אחרים

מתי ואיפה

28 במאי 2024, 18:30 – 22:50

יס פלנט, חיפה, סינמול, שדרות ההסתדרות 55, חיפה, ישראל

שיתוף

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