top of page
סמינר פתיחת שנה ארצי
סמינר פתיחת שנה ארצי

יום א׳, 18 בספט׳

|

אכסניית אנ"א חיפה

סמינר פתיחת שנה ארצי

סמינר חגיגי לפתיחת שנה עם צוות תשפ"ג במלואו

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

מתי ואיפה

18 בספט׳ 2022, 9:00 – 19 בספט׳ 2022, 17:00

אכסניית אנ"א חיפה, Tsviya Ve-Yitshak St 18, Haifa, Israel

פרטים

מה בסמינר: היכרות מעמיקה עם תוצרת, גיבוש , סדנאות והכשרות על תפקיד המלווה, כלים פרקטים לפתיחת שנה בקהילות ועוד

לוח זמנים

17 פריטים נוספים זמינים

שיתוף

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