top of page
סוגרים שנה בכנרת
סוגרים שנה בכנרת

יום ב׳, 01 ביולי

|

מרכז ימי טבריה

סוגרים שנה בכנרת

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

מתי ואיפה

01 ביולי 2024, 18:00 – 21:30

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

פרטים

קהילות הצעירים מחוז צפון בערב של כיף וביחד! של התנסות בשייט על הכנרת היפה שלנו! הזדמנות חד פעמית להפגש עם צעירות וצעירים שפועלים בישובים שכנים 

מוזמנות ומוזמנים להביא מגבת ובגדים להחלפה :) כל השאר עלינו

הרשמו עכשיו וניפגשששש

שיתוף

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