top of page
סדנת נגרות
סדנת נגרות

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

|

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

סדנת נגרות

לינקלוד פותחים שנה בסדנת נגרות מטורפת! אז מה בונים? מדפים או שרפרף לבחירתכם. ניפגש במשרדים של ״תוצרת הארץ״, החשמונאים 34. יום ראשון | 5.1 | 19:30 כיבוד קל יוגש במהלך הסדנה(: אז למה אתם מחכים?! מהרו להירשם, המקומות מוגבלים- 50₪ בהרשמה מוקדמת עד ה3.1 לאחר מכן העלות הינה 70₪🙏🏼

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

מתי ואיפה

05 בינו׳ 2025, 19:30

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

שיתוף

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