How to open another website within the body of my website

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tsscreddy
    New Member
    • Nov 2015
    • 1

    How to open another website within the body of my website

    I am newly Started a web site i want another website page within body of my website
  • Luk3r
    Contributor
    • Jan 2014
    • 300

    #2
    You can do this with an iFrame. Here's an example:
    Code:
    <html>
    <head>
    </head>
    <body>
    <iframe src="http://www.bytes.com" height=500 width=500></iframe>
    </body>
    </html>

    Comment

    • hefaz
      New Member
      • Nov 2015
      • 24

      #3
      you can do it with just an iframe, here is an example
      Code:
      <iframe src="http://www.w3schools.com"></iframe>

      Comment

      Working...