HTML CSS examples for HTML Tag:iframe
The src attribute specifies the address of the document to embed in the <iframe>.
Value | Description |
---|---|
URL | Specifies the URL of the document to embed in the iframe. |
An <iframe> in its simplest use:
<!DOCTYPE html> <html> <body> <iframe src="http://java2s.com"> <p>Your browser does not support iframes.</p> </iframe><!-- ww w . j a va2 s . c om--> </body> </html>