Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <iframe> src Attribute

❮ HTML <iframe> tag

Example

An <iframe> in its simplest use:

<iframe src="/default.asp"></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

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="https://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like src="default.htm")

❮ HTML <iframe> tag