Как открыть сайт в iframe

Discussion in 'Болталка' started by hoste1, 9 Jan 2011.

  1. hoste1

    hoste1 Banned

    Joined:
    14 Sep 2010
    Messages:
    9
    Likes Received:
    0
    Reputations:
    0
    во всю страницу

    подскажите плз :)
     
  2. OnlyOn

    OnlyOn Banned

    Joined:
    18 Oct 2010
    Messages:
    252
    Likes Received:
    89
    Reputations:
    36
    башка
    <head>
    <title>заголовок</title>
    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
    <style type=”text/css”>
    html {overflow: auto;}
    html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
    iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
    </style>
    </head>

    тело
    <body>
    <iframe id=”tree” name=”tree” src=”http://адрес.com” frameborder=”0″ marginheight=”0″ marginwidth=”0″ width=”100%” height=”100%” scrolling=”auto”></iframe>
    </body>
     
  3. Ponchik

    Ponchik Хлебо-булочное изделие

    Joined:
    30 Aug 2005
    Messages:
    687
    Likes Received:
    807
    Reputations:
    311
    ну ващет тут frameset подходит, но раз iframe...
     
  4. Wave

    Wave Member

    Joined:
    15 Aug 2010
    Messages:
    89
    Likes Received:
    11
    Reputations:
    0
    Хороший код )
     
  5. |qbz|

    |qbz| Banned

    Joined:
    25 Dec 2009
    Messages:
    385
    Likes Received:
    169
    Reputations:
    65
    <html>

    <style>
    body
    {
    margin:0px;
    }
    </style>

    <body>
    <iframe src="..." frameborder="0" border="0" width="100%" height="100%"></iframe>
    </body>

    </html>
     
  6. Wave

    Wave Member

    Joined:
    15 Aug 2010
    Messages:
    89
    Likes Received:
    11
    Reputations:
    0