HTML | <iframe> src Attribute (original) (raw)
Last Updated : 12 Jul, 2025
The HTML src attribute is used to specify the URL of the document that are embedded to the element.
Syntax:
Attribute Values: It contains single value URL which specifies the URL of the document that is embedded to the iframe. There are two types of URL link which are listed below:
- Absolute URL: It points to another webpage.
- Relative URL: It points to other files of the same web page.
Below example illustrates the src attribute in HTML:
Example:
html `
HTML iframe src Attribute<h1>GeeksforGeeks</h1>
<h2>HTML iframe src Attribute</h2>
<iframe src="https://www.geeksforgeeks.org/
height="200" width="400"></iframe>
`
Output:
Supported Browsers: The browser supported by HTML src attribute are listed below:
- Google Chrome 1 and above
- Edge 12 and above
- Internet Explorer
- Firefox
- Safari
- Opera