Open In App

HTML | <iframe> src Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <iframe> src attribute is used to specify the URL of the document that are embedded to the <iframe> element. 

Syntax: 

<iframe src="URL">

Attribute Values: It contains single value URL which specifies the URL of the document that is embedded to the iframe. There are two types of URL link which are listed below:

  • Absolute URL: It points to another webpage.
  • Relative URL: It points to other files of the same web page.

Below example illustrates the <iframe> src attribute in HTML: 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML iframe src Attribute
    </title>
</head>
 
<body style="text-align:center;">
     
    <h1>GeeksforGeeks</h1>
     
    <h2>HTML iframe src Attribute</h2>
     
            height="200" width="400"></iframe>
</body>
 
</html>                   


Output:

  

Supported Browsers: The browser supported by HTML <iframe> src attribute are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads