HTML Tags – IFrame Tag


What is an HTML <iframe> tag ?

HTML iframe is used to display a web page within a web page.

Its also called as nested webpage display process.

HTML <iframe> tag specifies an inline frame.

Why we use HTML <iframe> tag ?

HTML iframes are used to embed another document within the current HTML document.

Both web page content and iframe contents can interact with each other using JavaScript.

How HTML <iframe> tag works ?

When <iframe> tag is declared with “src” attribute, A rectangular within the document is opened and source URL is loaded inside the iframe.

The iframe window will be treated as the new HTML document by the browser with scrollbars and borders.

HTML beginners tutorial !!!

Click to Learn More about – HTML Tutorial for beginners

Syntax :

<iframe src="sourceURL"></iframe>

1. Simple HTML Iframe

Example :

Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example1-cc.png

2. IFrame with Width and Height


Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook" height="300px" width="300px"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example2-cc-1024x894.png

3. IFrame Width and Height in percentage.

Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook" height="30%" width="30%"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example3-cc-1024x629.png

4. IFrame Width and Height modified using CSS property.

Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook" style="height:300px;width:300px"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example4-cc-1024x933.png

5. IFrame without border

Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook" style="border:none;height:300px;width:300px"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example5-cc-1024x895.png

6. IFrame with border


Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="https://s30.e0b.myftpupload.com/" title="cstechbook" style="border:2px solid orange;height:300px;width:300px"></iframe>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example6-cc-1024x869.png

7. IFrame with Target link.

Example :

<!DOCTYPE html>
<html>
        <head>
                <title>IFrame</title>
        </head>
        <body>
                <p>Simple IFrame Example</p>
                <iframe src="text.html" title="google" name="cstechbook" style="border:2px solid orange;height:300px;width:300px"></iframe>
                <p><a href="https://s30.e0b.myftpupload.com/" target="cstechbook">CSTechbook.com</a></p>
        </body>

</html>

Output :

This image has an empty alt attribute; its file name is html-23-example7-cc.png

<iframe> Tag Attributes

HTML <iframe> tag support following specific attributes.

SnoAttributesValueDescription
1heightpixelsSpecify the height of the inline frame.
2nametextSpecify the name of the inline frame.
3sandboxallow-forms
allow-pointer-lock
allow-popups
allow-same-origin
allow-scripts
allow-top-navigation
This attribute enable extra restrictions on the content that can appear in the inline frame.
allow-forms Its allows to embedded browsing context to submit forms.
allow-pointer-lock Its allows to embedded browsing context to use Pointer Lock API.
allow-popups Its allows popups window.
allow-same-origin Its allows to embedded content consider as normal origin instead of unique origin.
allow-scripts Its allows to embedded browsing context to execute scripts.
allow-top-navigation Its allows to embedded browsing context load content to the top level browsing context.
4srcurlSpecify the URL of the page to embed on the inline frame.
5widthpixelsSpecify the width of the inline frame.
6Following attributes has been removed in HTML5.
7alignleft
right
top
middle
bottom
Specify the alignment of an iframe.
8frameborder1
0
Specify that border should be display or not.
9longdescURLSpecify a page (that contains a long description) of the content of an iframe.
10marginheightpixelsSpecify the top and bottom margins of an iframe.
11marginwidthpixelsSpecify the left and right margins of an iframe.
12scrollingauto
yes
no
Specify that scrollbars should be display or not.
13allowfullscreenallowfullscreenSpecify that iframe content allow to use on full screen.

Global Attributes

HTML <iframe> tag support following global attributes.

SnoAttributesValueDescription
1idunique_nameDeclared unique id for an element.
2classclass_nameDeclared one or more classnames for an element.
3stylestylesCSS inline styles specify an element.
4titletitleSpecify extra details of element contain, this will display as a “tooltip” for an elements.

Event Attributes

HTML <iframe> tag support following event attributes.

SnoAttributesValueDescription
1onfocusscriptelement gets focus on object when script tobe run.
2onblurscriptelement lose the focus on object when scrip tobe run.
3onabortscriptelement gets aborted on object when script tobe run.
4onchangescriptelement gets anytime change on object when script tobe run.
5onbeforeunloadscriptelement gets unloaded on object when scrip tobe run.
6onclickscriptclicked on object when script tobe run.
7ondblclickscriptdouble click on object when script tobe run.
8onkeydownscriptkey is pressed when script tobe run.
9onkeypressscriptkey is pressed over element then released when script tobe run.
10onkeyupscriptkey is released over element when script tobe run.
11onmousedownscriptmouse button was pressed over an element when script tobe run.
12onmouseoutscriptmouse pointer release over an element when script tobe run.
13onmousemovescriptrun mouse pointer moved when script tobe run.
14onmouseoverscriptrun mouse pointer move over when script tobe run.
15onmouseupscriptmouse button is released when script tobe run.
16onresetscriptform has been reset when script tobe run.
17onselectscriptSelect some content when script tobe run.
18onsubmitscriptform has been submitted when script tobe run.
19onloadscriptobject has load when script tobe run.
20onchangescriptallow to change the object when script tobe run.
21onunloadscriptunload to the browser window when script tobe run.
22ondragscriptelement being dragged when script tobe run.
23ondragendscriptelement being stop dragged when script tobe run.
24ondragenterscriptelement being go target dragged when script tobe run.
25ondragleavescriptelement being leave to target dragged when script tobe run.
26ondragoverscriptelement being over to target dragged when script tobe run.
27ondragstartscriptelement being start dragged when script tobe run.
28ondropscriptelement being dropped when script tobe run.
29onerrorscriptelement error occurs when script tobe run.
30onmessagescriptelement message display when script tobe run.
31onerrorscriptelement error occurs when script tobe run.
32onmousewheelscriptmouse wheel will be rotate when script tobe run.
33onscrollscriptscrollbar is scroll when script tobe run.
34onresizescriptelement should be resize when script tobe run.
35onselectscriptall element content selected when script tobe run.
36onstoragescriptelement should be store in target when script tobe run.

Browser Compatibility

SnoBrowserSupport
1ChromeYes
2FirefoxYes
3EdgeYes
4OperaYes
5SafariYes
6Internet ExplorerYes