top of page
סדנה כלכלית בשיתוף עמותת פעמונים
סדנה כלכלית בשיתוף עמותת פעמונים

יום א׳, 26 בינו׳

|

מטה תנועת תוצרת הארץ

סדנה כלכלית בשיתוף עמותת פעמונים

ההרצאה תספק לכם כלים מעשיים לניהול חכם של התקציב האישי שלכם ושיפור מצבכם הכלכלי. 🗓️יום ראשון, 26.1.25 ⏰19:00 התכנסות וכיבוד קל ⏰19:30 תחילת הסדנה 📍 בנייני תוצרת הארץ, לוד, החשמונאים 34. *תתקיים סנדת המשך בנושא תלוש שכר, פנסיה וקופות גמל*

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

מתי ואיפה

26 בינו׳ 2025, 19:00 – 21:00

מטה תנועת תוצרת הארץ, החשמונאים 34, לוד, ישראל

כרטיסים

  • דמי השתתפפות בסדנה

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