Horje

How to add HTML <source> src Attribute

Definition and Usage

The src attribute specifies the URL of the media file to play.

This attribute is required when <source> is used in <audio> and <video>.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Syntax

<source src="URL">

Attribute Values

Value Description
URL Specifies the URL of the media file.

Possible values:

  • An absolute URL - points to another web site (like href="http://www.example.com/horse.ogg")
  • A relative URL - points to a file within a web site (like href="horse.ogg")
index.html
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>

Output should be:

How to add HTML <source> src Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin