- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML <iframe>
The <iframe>
element in HTML is used to embed another HTML document within the current document. It is commonly used to display videos, maps, or third-party content such as advertisements.
Syntax
<iframe src="https://example.com" width="600" height="400" title="Example Iframe"></iframe>
Attributes
src
: Specifies the URL of the document to be embedded.width
: Sets the width of the iframe (in pixels or percentage).height
: Sets the height of the iframe (in pixels or percentage).title
: Provides a text description for accessibility purposes.allow
: Grants permissions (e.g.,fullscreen
,camera
,microphone
).allowfullscreen
: Allows the iframe content to be displayed in fullscreen mode.loading
: Specifies lazy loading of the iframe (lazy
oreager
).sandbox
: Adds restrictions to the iframe content for security (e.g.,allow-scripts
,allow-forms
).
Example 1: Embedding a YouTube Video
<iframe
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
width="560"
height="315"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
Example 2: Embedding a Google Map
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3151.8354345094477!2d144.9630579153211!3d-37.81362797975195!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6ad642af0f11fd81%3A0x5045675218ce6e0!2sMelbourne%20VIC%2C%20Australia!5e0!3m2!1sen!2sus!4v1614765582785!5m2!1sen!2sus"
width="600"
height="250"
style="border:0;"
allowfullscreen
loading="lazy">
</iframe>
Security: Using sandbox
Attribute
The sandbox
attribute enhances iframe security by restricting its content's actions.
<iframe
src="https://example.com"
width="600"
height="400"
sandbox="allow-scripts allow-same-origin">
</iframe>
Options for sandbox
:
allow-scripts
: Allows running JavaScript.allow-same-origin
: Allows access to cookies and storage.allow-forms
: Allows form submission.
Styling an <iframe>
<iframe
src="https://example.com"
style="border: 2px solid blue; border-radius: 10px;"
width="600"
height="400">
</iframe>
Advantages of Using <iframe>
- Embeds external content like videos or maps.
- Enables seamless integration of third-party services.
- Allows embedding interactive elements without affecting the main page.
Disadvantages of Using <iframe>
- May pose security risks without proper restrictions (
sandbox
). - Decreases page performance due to additional resource loading.
- Limited interactivity with the parent page without special permissions (e.g., CORS policies).
Summary
The <iframe>
element is a powerful tool for embedding external content into a webpage. Using attributes like sandbox
and allow
, developers can control its functionality and security. While versatile, it should be used cautiously to avoid performance or security issues.