HTML <iframe> src Attribute

Example

An <iframe> in its simplest use:

<iframe src=”https://dwfaisalabad.com”></iframe>

Try it Yourself »


Definition and Usage

The src attribute specifies the address of the document to embed in the <iframe>.


Browser Support

Attribute
src Yes Yes Yes Yes Yes

Differences Between HTML 4.01 and HTML5

NONE.


Syntax

<iframe src=”URL“>

Attribute Values

Value Description
URL Specifies the URL of the document to embed in the iframe.Possible values:

  • An absolute URL – points to another web site (like src=”http://www.example.com/default.htm”)
  • A relative URL – points to a file within a web site (like src=”default.htm”)

Post Author: Zahid Farid