top of page
מפגשי חודש מרץ
מפגשי חודש מרץ

יום ה׳, 13 במרץ

|

בית עמנואל מרכז קהילתי

מפגשי חודש מרץ

בייבי מאמא נתיבות

מתי ואיפה

1 תאריכים נוספים

13 במרץ 2025, 9:00 – 12:00

בית עמנואל מרכז קהילתי, אריק איינשטיין 107, נתיבות, ישראל

פרטים

סדנת התפתחות בייבי מאמא נתיבות

כרטיסים

  • סדנא בייבי מאמא

    ‏25.00 ‏₪

סך הכל

‏0.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);