HTML <iframe> src Attribute
Example
<iframe src="demo.html">
Your browser does not support iframe element.
</iframe>
Meaning
The src attribute contains the URL of the content to be displayed in the floating frame. If absent, the frame is blank.
Standard Syntax
<iframe src="URL">
Advertisement
Attribute Values
| Value | Description |
|---|---|
| URL | Specifies the URL of the document in the <iframe>.
|