HTML Iframe
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="discription"></iframe>
Example of Iframe
Set Iframe width & Height
Use the height and width attributes to specify the size of the iframe.
<iframe src="https://icons.getbootstrap.com/" width="100%" height="500px" title="Bootstrap icons"></iframe>