I have a link video, how can I play video in html code?
I try with <a>
tag but it not work
Is have any other html tag can display and play the video in html, my videos have extension is .mp4 and .mov type, i would like to handle it
I have a link video, how can I play video in html code?
I try with <a>
tag but it not work
Is have any other html tag can display and play the video in html, my videos have extension is .mp4 and .mov type, i would like to handle it
2
Answers
You have to use video tag tag.
For .mp4 video files.
For .mov video files.
The
<video>
tag is used to embed video content in a document, such as a movie clip or other video streams.The
<video>
tag contains one or more<source>
tags with different video sources. The browser will choose the first source it supports.The text between the
<video>
and</video>
tags will only be displayed in browsers that do not support the<video>
element.There are three supported video formats in HTML: MP4, WebM, and OGG.
Source: https://www.w3schools.com/tags/tag_video.asp