আপনি ব্যবহার করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন৷ একটি সর্বোচ্চ-প্রস্থ আপনার ভিডিও প্লেয়ারকে প্রতিক্রিয়াশীল করার জন্য সম্পত্তি -
উদাহরণ
<!DOCTYPE html> <html> <head> <meta name = "viewport" content = "width=device-width, initial-scale = 1.0"> <style> video { max-width: 100%; height: auto; } </style> </head> <body> <video width = "300" controls autoplay> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> </video> <p>To check the effect, you need to resize the browser.</p> </body> </html>