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

What does the video tag mean?

云罗郡主
Release: 2019-02-21 16:37:43
Original
7235 people have browsed it

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

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>
Copy after login


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!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template