HTML iframe Tag
The HTML <iframe> tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document. Syntax <iframe src=”URL” title=”description”></iframe> Example <!doctype html> <html> <head> <title>HTML iframe tag</title> </head> <body> <h1>Iframe Example</h1> <iframe src=”https://krtricks.in/learn-programming/” title=”Learn Coding Free.” width=”400px” height=”300px”> </iframe> </body> </html> Try It Now Output: Attributes Attribute Value …