How can i put 2 web pages in one page?

Discussion in 'HTML & Website Design' started by AdsInfluencer, Jan 25, 2009.

  1. #1
    I want my website to show my website and another website of my choice how can i do this?
     
    AdsInfluencer, Jan 25, 2009 IP
  2. Astroman

    Astroman Well-Known Member

    Messages:
    2,355
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    135
    #2
    Not sure what you mean, do you have an example?
     
    Astroman, Jan 25, 2009 IP
  3. AdsInfluencer

    AdsInfluencer Well-Known Member

    Messages:
    400
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    120
    #3
    say website x on left side on website y on right side
    split screen
     
    AdsInfluencer, Jan 25, 2009 IP
  4. Chuckun

    Chuckun Well-Known Member

    Messages:
    1,161
    Likes Received:
    60
    Best Answers:
    2
    Trophy Points:
    150
    #4
    For this you could simply use frames..

    Frame one page at 50%, left align, and another page at 50%, right align..

    However, I don't really recommend it... Might be very awkward..
     
    Chuckun, Jan 25, 2009 IP
  5. innovati

    innovati Peon

    Messages:
    948
    Likes Received:
    63
    Best Answers:
    1
    Trophy Points:
    0
    #5
    a better question than how is why. What reason do you have for desiring this solution - what are you hoping this will accomlish?

    Frames, although useful, bear the mark of tacky overuse and general disgust by most designers and artists.
     
    innovati, Jan 25, 2009 IP
  6. ryandanielt

    ryandanielt Well-Known Member

    Messages:
    1,797
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    185
    #6
    Use a table to split the page into 2, then use php or another language to call the page into each part of the table.
     
    ryandanielt, Jan 25, 2009 IP
  7. greenexit

    greenexit Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Either use iframe or frames. Or else use PHP to grab it using CURL and output it.
     
    greenexit, Jan 25, 2009 IP
  8. j_eclipse

    j_eclipse Member

    Messages:
    76
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    48
    #8
    This allows me to have a web page within a web page.
    insert this:

    <iframe src="secondpage.htm" name="NewsFrame" width="397" height="125" align="default" frameborder="0">
    <p>&nbsp;</p>
    </iframe>


    Then name your second page (secondpage.htm)
    then change the width and height to better fit your scenario. you will still have to do some scrolling.
    hope this helps.
     
    j_eclipse, Jan 25, 2009 IP