How to use < video > tag with autoplay attribute in HTML ? with example
How to use < video > tag with autoplay attribute in HTML > with example
Autoplay attribute we use to HTML
the video will start playing as soon as it is ready .
Example
<body>
<video controls autoplay>
<source src="tech.mp4" type="video/mp4">
</video>
</body>
Comments
Post a Comment