#iframe
- 1. An iframe or inline frame is an HTML element used to embed another HTML document within the current document.
- 2. To create iframe Html provides <iframe>...</iframe> tag.
- 3. It is a container tag.
- 4. It is an inline level element.
- 5. To mention the path of the document we have to use 'src' attribute.
- 6. We can also set the height and width of iframe using height and width attribute.
- 7. Syntax:- <iframe src='path-of-the-document' height='value' width='value'></iframe>
- 8. It is not recommended to use multiple iframes in our webpage because it slows down the webpage and hence creating a negative impact on the website's performance and user experience.