How to use < video > tag with preload attribute in HTML ? with example
How to use < video > tag with preload attribute in HTML ? with example
Preload attributes is used for the video
should be loaded when the page loads.
Example of <video> tag with preload attribute and controls attribute
<body>
<video controls preload="none">
<source src="techforum.mp4" type="video/mp4">
</video>
</body>
Comments
Post a Comment