Answers for "video properties in html"

1

video tag html

<!DOCTYPE html>
<html>
<body>

<h1>Video TITLE</h1>

<video width="320" height="240" controls>
  <source src="Video Link">
</video>

</body>
</html>
Posted by: Guest on March-21-2021
0

video values in html

<!-- video attributes -->
<video src="(link)" poster="(thumbnail's link)" controles autoplay loop muted preload="auto|metadata|none">(video's alt)</video>
<!-- you can adjust width and height with css-->
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language