IFrame demo. It opens 4 sub-browser windows inside the webpage.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <!doctype html>
<html>
<head>
<title>IFRAME DEMO</title>
</head>
<body>
<iframe src="http://www.google.com/" width="49%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
<iframe src="http://www.bing.com/" width="49%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
<iframe src="http://www.yahoo.com/" width="49%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
<iframe src="http://www.wikipedia.org/" width="49%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
|
I like this one. I implemented it on my website.