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>
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!