HTML iframe Tag specifies an inline frame. It is used to embed other html document or third-party content like media files or applets into the current web page.
Table of Contents
Syntax of HTML iframe Tag
The Syntax of HTML iframe Tag is shown below, It has both starting tag and ending tag.
<iframe>
</iframe>
Usage of HTML iframe Tag
HTML iframe Tag is used to embed other independent html document or web page into the main html file. HTML iframe tags can also be used to embed other media files like a YouTube video into any web page.
Note: You will only be able to embed any file or document in your page if the host of that file or document allows you to do so.
The title attribute is used inside html iframe tag to define the content name that you are embedding.
HTML iframe Tag is an inline element.
Example of HTML iframe Tag
Simple example of HTML iframe Tag is shown below.
<iframe src="https://www.howtocodeschool.com" title="HowToCodeSchool"></iframe>
In above example we are trying to embed our website (HowToCodeSchool.com) into this page.
Another example is given below. In this example we are trying to create an iframe for the google main page.
<iframe src="https://www.google.com" title="Google"></iframe>
Browser Support for HTML iframe Tag
HTML iframe Tag is supported by all major browsers including Safari and Internet Explorer.
Global Attributes Support in HTML iframe Tag
The HTML iframe Tag supports all Global Attributes.
Event Attributes Support in HTML iframe Tag
The HTML iframe Tag supports all Event Attributes.
HTML iframe Tag Video
Watch our video on HTML iframe Tag.