الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h2>Iron Man Mark 2</h2> <!-- حتى يعمل بشكل تلقائي عند فتح الصفحة <video> للوسم autoplay قمنا بإضافة الخاصية --> <video width="360" height="200" controls autoplay> <source src="https://harmash.com/tutorials/html/videos/iron-man-mark-2.mp4" type="video/mp4"> <source src="https://harmash.com/tutorials/html/videos/iron-man-mark-2.ogg" type="video/ogg"> Your browser does not support the video tag. </video> <p><b>Note:</b> The 'autoplay' attribute does not work on some mobile devices like Iphone and Ipad.</p> </body> </html>