UK[ˈvɪdiəʊ] US[ˈvɪdioʊ]

n. Tape video; video tape; video recorder, television; (referring to the method) video

adj. Video; television; image ; Use videotape [videotape]

vt. to record; to make a video of...

Third person singular: videos Plural: videos Present participle: videoing Past tense: videoed Past participle: videoed

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

Run instance »

Click the "Run instance" button to view the online instance