The src
attribute specifies the URL of the media file to play.
This attribute is required when <source>
is used in <audio>
and <video>
.
The numbers in the table specify the first browser version that fully supports the attribute.
<source src="URL">
Value | Description |
---|---|
URL | Specifies the URL of the media file.
Possible values:
|
Example:
HTML
<audio controls>
<source src="https://file-examples.com/storage/fe36b23e6a66fc0679c1f86/2017/11/file_example_OOG_1MG.ogg" type="audio/ogg">
<source src="https://file-examples.com/storage/fe36b23e6a66fc0679c1f86/2017/11/file_example_MP3_700KB.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |