Search This Blog

Showing posts with label HTML Video Tags. Show all posts
Showing posts with label HTML Video Tags. Show all posts

HTML Video Tag With Loop Attribute Example

HTML Video Tag With Loop Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Video Tag With Loop Attribute Example </h2>

<video controls loop="1">
<source src="Jabra Song.mp4" type="video/mp4">
this tag not support in your browser
</video>

</body>
</html>
OUTPUT
HTML Video Tag With Loop Attribute Example

HTML Video Tag With Autostart Attribute Example

HTML Video Tag With Autostart Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Video Tag With Autostart Attribute Example </h2>

<video controls autoplay>
<source src="Jabra Song.mp4" type="video/mp4">
this tag not support in your browser
</video>

</body>
</html>
OUTPUT
HTML Video Tag With Autostart Attribute Example

HTML Video Tag with Height Attribute Example

HTML Video Tag with Height Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>

<h2> Video Tag with Height Attribute Example </h2>
<video height="400" controls>
<source src="Jabra Song.mp4" type="video/mp4">
this tag not support in your browser
</video>

</body>
</html>
OUTPUT
HTML Video Tag with Height Attribute Example

HTML Video Tag with width Attribute Example

HTML Video Tag with width Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>

<h2> Video Tag with width Attribute Example </h2>
<video width="400" controls>
<source src="Jabra Song.mp4" type="video/mp4">
this tag not support in your browser
</video>

</body>
</html>
OUTPUT
HTML Video Tag with width Attribute Example