HTML Iframes
The HTML iframes are employed to insert another HTML page into the present HTML page. It is also referred to as an inline frame.
Attributes
- src: It is employed to define the URL of the page to be embedded.
- width and height: It is utilized to specify the dimensions of the iframe.
- scrolling: It is utilized to manage the scrollbars.
Example:
<iframe src="" title="name" height="440" width="500"></iframe>
Output