The iframe
tag is used to embed another HTML document within the current HTML document. It stands for "inline frame". This tag is commonly used to display content from another website or to embed a video or audio player on a webpage.
The iframe
tag has several attributes that can be used to customize the appearance and behavior of the embedded content. Some of the most commonly used attributes include:
src
: Specifies the URL of the document to be embedded.width
: Specifies the width of the embedded content.height
: Specifies the height of the embedded content.frameborder
: Specifies whether or not to display a border around the embedded content.scrolling
: Specifies whether or not to display scrollbars around the embedded content.Here is an example of how to use the iframe
tag:
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" width="560" height="315" frameborder="0" allowfullscreen></iframe>
This code will embed a YouTube video on the webpage with a width of 560 pixels and a height of 315 pixels. The frameborder
attribute is set to 0 to remove the border around the video, and the allowfullscreen
attribute is included to allow the video to be viewed in fullscreen mode.
Another example of using the iframe
tag is to embed a Google Map on a webpage:
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.684764238758!2d-73.985428684593!3d40.748817979328!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zNDDCsDQ5JzEwLjkiTiA3M8KwMjgnMjMuMCJF!5e0!3m2!1sen!2sus!4v1522079267646" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
This code will embed a Google Map on the webpage with a width of 600 pixels and a height of 450 pixels. The src
attribute specifies the URL of the embedded content, which in this case is a Google Maps URL with latitude and longitude coordinates.
The iframe
tag is a powerful tool for embedding content from other websites or displaying multimedia content on a webpage. With its customizable attributes, it can be used to create a wide variety of interactive and engaging webpages.