How to use < iframe > tag with srcdoc Attribute in HTML ? with Example
How to use < iframe > tag with srcdoc Attribute in HTML ? with Example The srcdoc attribute specifies the HTML content of the page to show in the inline frame. Example <html> <body> <h1> srcdoc attribute with iframe Example </h1> <iframe srcdoc ="<p>src attribute example</p>" src="tech.thinkforu.org"> </iframe> </body> </html>