This is the source code from the HTML5 Tutorial For Beginners. In this source code, you are going to learn about HTML 5 – Video Element.
Source Code:
<!DOCTYPE html> <html> <head> <title>iframe</title> <meta charset="UTF-8"> </head> <body> <video width="300" height="200" controls autoplay> <source src="./video/test.mp4" type="video/mp4"> Video file is not supported. </body> </html>