HTML
Iframe

<iframe> (inline frame), is an element which make it possible to embed another document within the current HTML document.

Iframe Breakdown

Here is the breakdown of HTML Iframe.

Iframe Example

Below example will demonstrate the basic architecture of HTML Iframe.

<!doctype html>  
<html>
  	<head>
	 	    <title>Inline Frame</title>
    </head>

    <body>
        <iframe id="iframe Example"
            title="Inline Frame"
    	    	src="https://www.openstreetmap.org/export/embed.html?bbox=-0.004017949104309083%2C51.47612752641776%2C0.00030577182769775396%2C51.478569861898606&layer=mapnik">
    		</iframe>
    </body>
</html>