< All the HTML Tags >

<iframe></iframe>

Video Coming Soon...

  • iframe

    Tag Type

    inline

    Tag Category

    content

    Defines an inline frame

    Viewed

    1

    Examples

    1

Definition:

The HTML <iframe> tag is used to embed another HTML document within the current document, creating a nested browsing context.

Attributes like src, width, height, and allow control the embedded content's behavior and appearance. This tag is widely used for displaying external content such as videos, maps, or other websites.

Understanding the use of the `<iframe>` tag is essential for creating rich, interactive web experiences.

Attributes:

src, srcdoc, name, width, height, sandbox, allow, loading, referrerpolicy, allowfullscreen, frameborder

Accessibility:

Coming Soon…

Default iframe Example:

Using the <iframe> tag to embed another document.
<iframe src="https://www.example.com"></iframe>

Default iframe Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…