HTML CSS examples for HTML:iframe
Example of HTML Iframe
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of HTML Iframe</title> </head> <!-- www . j av a 2s .c o m--> <body> <iframe src="http://java2s.com" width="300" height="200"> alternative content for browsers which do not support iframe. </iframe> </body> </html>