top of page
אימהות וקטנטנים נפגשים ומשחקים
אימהות וקטנטנים נפגשים ומשחקים

יום ג׳, 24 בינו׳

|

בית חב"ד, צפת

אימהות וקטנטנים נפגשים ומשחקים

מפגש מוסיקה ותנועה לאמהות וקטנטנים בעיר העתיקה

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

מתי ואיפה

24 בינו׳ 2023, 16:00 – 18:00

בית חב"ד, צפת, Hatam Sofer St 28, Safed, 13203, Israel

פרטים

יום שלישי ב שבט מפגש מוסיקה ותנועה לאמהות וקטנטנים בעיר העתיקה

ההשתתפות ללא תשלום, בהרשמה מראש

24.1.23 

שעה 16 עד 18

שיתוף

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