+ 2
Which tag is used to insert video in html page
7 Réponses
+ 9
Use the <video> tag
here's reference👇:
https://www.sololearn.com/learn/HTML/2194/
+ 3
<a href > </a>
+ 2
The <video> tag
+ 1
Inserting video in html
Example:
<video width=“100” height=“150” controls /autoplay>
<source src=“movie.mp4” type=“video/mp4”>
</video>
+ 1
You can also use an "iframe" as well if it's for a YouTube video. Can also bring an entire webpage into your page using iframe.
0
There are more tags, but the most used is the <video></video> tag
0
Instead if <iframe> tag i want to use <video>tag to upload videos in hmtl webpage.is that possible?