top of page
קורס הגשת עזרה ראשונה בשעת חירום
קורס הגשת עזרה ראשונה בשעת חירום

יום ג׳, 07 בנוב׳

|

קרית מלאכי

קורס הגשת עזרה ראשונה בשעת חירום

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

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

מתי ואיפה

07 בנוב׳ 2023, 16:30 – 20:00

קרית מלאכי, שדרות רש"י 5, קרית מלאכי, ישראל

פרטים

הקורס הינו ללא עלות, יועבר עלי די מדריכים מתנדבי מד"א. במהלכו תרכשו כלים מעשים לטיפול בפציעות שונות. 

שיתוף

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