Coding Ninjas Logo

Home > HTML Questions > What is the use of an iframe tag ?

What is the use of an iframe tag ?


Answer: An iframe is used to display a web page within a web page.
    Ex. for showing Google-maps api in webpage.

Syntax: <iframe src="URL"></iframe>  
Example:
<iframe src="demo_iframe.html" width="200px" height="200px"></iframe>

Similar Questions