Open In App

HTML | <source> src Attribute

The HTML <source> src attribute is used to specify the URL of the media resource. The source element is used as a child element of the <audio> and <video> element. 

Syntax: 



<source src="URL">

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

Below example illustrates the <source> src attribute in HTML: 



Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML source src Attribute
    </title>
</head>
 
<body style="text-align:center;">
      
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
     
    <h2>HTML Source src Attribute</h2>
 
    <audio controls>
        <source id="mySource" src="gameover.wav"
                type="audio/mpeg">
 
        <source src="gameover.ogg" type="audio/ogg">
    </audio>
</body>
 
</html>                   

Output:

  

Supported Browsers: The browser supported by HTML <source> src attribute are listed below:

Article Tags :