Lessons:

  • 31. HTML Iframes

HTML Code:


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Iframe Demo</title>
</head>

<body>
	
	<iframe src="http://www.bing.fr" width="100%" height="400">
		<p>Your browser does not support iframe</p>
	</iframe>
	<iframe src="http://www.bing.com" width="100%" height="400">
		<p>Your browser does not support iframe</p>
	</iframe>
</body>
</html>

Compiled:

Iframe Demo

Link:

Iframe.html