Advertisement
Home Open Editor ❯

HTML <iframe> src Attribute

Example

<iframe src="demo.html">
  Your browser does not support iframe element.
</iframe>

Try this code ❯

Meaning

The src attribute contains the URL of the content to be displayed in the floating frame. If absent, the frame is blank.


Standard Syntax

<iframe src="URL">


Advertisement

Attribute Values

Value Description
URL Specifies the URL of the document in the <iframe>.
  • An absolute URL - navigate to within or another web site ( href="http://www.example.com/index.html")
  • A relative URL - navigate to within a web site ( href="index.html")
Home Open Editor ❯
Advertisement