HTML Multimedia


 <!doctype html>

<html>
    <head>
        <title>HTML Multimedia</title>
    </head>
    <body>
        <video width = "500" height = "500 " controls>
            <source src="SampleVideo_1280x720_20mb.mp4" type="video/mp4">
        </video>
        <br><audio controls>
           <source src="SampleAudio.mp3" controls="">            
        </audio>
        <p>If it doesnt work, please upgrade your browser!!</p>
    </body>
</html>                    

Comments