Open In App

HTML | <video> src Attribute

The HTML <video> src Attribute is used to specify the URL of the video file. This attribute uses Ogg file on Firefox, Opera and Chrome browsers and MPEG4 file on Internet Explorer and Safari browsers. This attribute is new in HTML5. 

Syntax:



<video src="URL">

Attribute Values: It contains a single value URL which specifies the link of source video. There are two types of URL link which are listed below:

Example: 






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML video src Attribute</title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksforGeeks</h1>
 
        <h3>HTML video src Attribute</h3>
 
        <video width="400" height="200" controls src=
         Browser not supported
        </video>
    </center>
</body>
 
</html>

Output:

  

Note: Always specify the width and the height of the video else web page will be confused that how much space that video will be required due to that reason web page become slow down.

Supported Browsers: The browser supported by HTML <video> src Attribute are listed below:

Article Tags :