Home  >  Article  >  Web Front-end  >  What does the video tag mean?

What does the video tag mean?

云罗郡主
云罗郡主Original
2019-02-21 16:37:437212browse

What does the video tag mean?

The video tag defines a video, such as a movie clip or other video stream. Currently, the video element supports three video formats: MP4, WebM, and Ogg. We You can place text content between video tags so that browsers that do not support the video element can display the tag's information.

html video tag syntax

Function: Define video, such as movie clips or other video streams.

Note: You can place text content between the start tag and the end tag, so that old browsers can display information that the tag is not supported.

Note: The 39000f942b2545a5315c57fa3276f220 tag is a new tag in HTML 5.

html video tag example

<!DOCTYPE HTML>
<html>
<body>
<video src="http://www.w3school.com.cn/i/movie.ogg" controls="controls">
your browser does not support the video tag
</video>
</body>
</html>


The above is the detailed content of What does the video tag mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn