<!DOCTYPE html>

<html>
 
<body style="text-align: center;">
 
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
     
    <h2>
        How to insert video
        and play in HTML
    </h2>
 
    <p>
        Adding Video on my Webpage
    <p>
     
    <video width="500px" height="500px"
        controls="controls"/>
         
        <source src="vid.mp4"
            type="video/mp4">
    </video>
</body>
 
</html>

Comments