Creating IFrames in HTML

An iframe is an element that display a webpage inside another webpage. The webpage will be displayed inside the iframe. In order for an iframe to work, the attribute src must be define. The src attribute contains the url of the webpage that will be displayed.

<iframe src="https://javapointers.com"></iframe>
<iframe src="http://makeitfreehost.com"></iframe>
Output

Share this tutorial!