Skip to main content

video tag in html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Embedding Video into an HTML Page</title>
</head>
<body>
<video controls="controls" src="https://www.tutorialrepublic.com/examples/video/shuttle.mp4">
        Your browser does not support the HTML5 Video element.
    </video>


<html lang="en">
<head>
    <meta charset="utf-8">
    <title>YouTube Video</title>
</head>
<body>
    <iframe width="560" height="315"  src="https://www.tutorialrepublic.com/examples/video/shuttle.mp4" frameborder="0" allowfullscreen></iframe>
</body>
</html>
</body>
</html>                            

Comments