Welcome, guest | Sign In | My Account | Store | Cart

IFrame demo. It opens 4 sub-browser windows inside the webpage.

HTML, 20 lines
 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>

1 comment

Alexander Thomas Cruz 12 years, 5 months ago  # | flag

I like this one. I implemented it on my website.

Created by FB36 on Thu, 21 Apr 2011 (MIT)
HTML recipes (12)
FB36's recipes (148)

Required Modules

  • (none specified)

Other Information and Tasks