top of page
ריטריט צפוני
ריטריט צפוני

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

|

חוות נאח"ת רוח

ריטריט צפוני

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

מתי ואיפה

18 בספט׳ 2024, 11:00 – 20 בספט׳ 2024, 13:00

חוות נאח"ת רוח, העיגול 22, כפר יחזקאל, ישראל

פרטים

התגעגענו אז באנו! 🌿

אחרי כמעט שנה שקהילת צעירי הגליל העליון מפוזרת בכל רחבי הארץ

הרמנו את הכפפה ויצרנו ריטריט צפוני משובח

מלא בסדנאות של צפוניים אסליים✨

שמכירים אותנו ויודעים בדיוק מה ואיך אנחנו אוהבים 🤍

אומנות, תנועה, יצירה, כניסה פנימה וחיבור החוצה

שיתוף

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