Open In App

HTML | <iframe> srcdoc Attribute

Last Updated : 06 May, 2025
Comments
Improve
Suggest changes
Like Article
Like
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> 
    
    <iframe src="https://www.geeksforgeeks.org/community/"
            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

Next Article

Similar Reads