top of page
מפגשוק | ערב הקרנת סרטי בורקס
מפגשוק | ערב הקרנת סרטי בורקס

יום ה׳, 26 בינו׳

|

שוק פרדס כץ

מפגשוק | ערב הקרנת סרטי בורקס

קלאסיקות ישראליות - מהסוג הזה שמדקלמים באינסטינקטיביות, בכבוד ענק לשחקני הענק שלנו!

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

מתי ואיפה

26 בינו׳ 2023, 21:00

שוק פרדס כץ, Shlomo Ben Yosef St 2, Bnei Brak, Israel

פרטים

ערב הקרנת סרטי בורקס במפגשוק!

קלאסיקות ישראליות - מהסוג הזה שמדקלמים באינסטינקטיביות, בכבוד ענק לשחקני הענק שלנו! ומי לא מכיר? לצד בורקס חובה בירה (רק ב10 שקלים :)

כרטיס הכניסה חינם בהרשמה מראש

יום חמישי 26.1.2023 בשעה 21:00

הרב שלמה בן יוסף 2, שוק פרדס כץ

שיתוף

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