Open In App

HTML | <iframe> srcdoc Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <iframe> srcdoc Attribute is used to specify the HTML content of the document in the element. It can be used together with the sandbox and seamless attributes. 

Syntax: 

<iframe srcdoc="HTML_code">

Attribute Values 

  • HTML_code: It is used to specify the HTML content of the page which will display in an Iframe element.

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML iframe srcdoc Attribute
    </title>
</head>
 
<body style="text-align:center;">
     
    <h1>GeeksforGeeks</h1>
     
    <h2>HTML iframe srcdoc Attribute</h2>
     
            srcdoc="<p>GeeksForGeeks</p>" id="GFG"
            height="200" width="400" name="myGeeks">
    </iframe>
     
</body>
 
</html>


Output :

  

Supported Browsers: The browsers supported by HTML <iframe>> srcdoc Attribute are listed below:

  • Google Chrome version 20 and above
  • Edge version 79 and above
  • Firefox version 25 and above
  • Internet Explorer is not supported
  • Opera version 15 and above
  • Safari version 6 and above

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