top of page
סדנאת צילום
סדנאת צילום

יום א׳, 14 ביולי

|

"התחנה" מרכז הצעירים בלוד

סדנאת צילום

סדנת צילום הכוללת: 1. למידת קומפוזיציות מעניינות ומחמיאות. 2. ⁠טיפים לצילום מקצועי יותר בסמארטפון 3. ⁠התנסות בצילום במצלמה אמיתית. 4. ⁠תרגיל צילום פורטרטים כתמונה לרשתות לאתרי היכרויות. 5. ⁠כל משתתף מקבל תמונה מודפסת שלו בתום הסדנא על גבי מגנט בגודל 10/15.

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

מתי ואיפה

14 ביולי 2024, 20:30

"התחנה" מרכז הצעירים בלוד, גרטבול 2, לוד, ישראל

שיתוף

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