How to develop Webpage without Frames

Discussion in 'HTML & Website Design' started by solutions.50webs.com, Jul 6, 2010.

  1. #1
    I developed the webpage with Frames.

    * menu.htm

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Frameset Example</title>
    </head>


    <frameset rows="5%,*" frameborder="0" border="0" framespacing="0">
    <frame name="menu" src="top.htm" marginheight="0" marginwidth="0" scrolling=no noresize>
    <frame name="content" src="http://www.google.com" marginheight="0" marginwidth="0" scrolling="auto" noresize>

    <noframes>
    <p>This section (everything between the 'noframes' tags) will only be displayed if the users' browser doesn't support frames. You can provide a link to a non-frames version of the website here. Feel free to use HTML tags within this section.</p>
    </noframes>

    </frameset>

    </html>


    * top.htm

    <html>
    <body>
    <table width="100%" align="center">
    <tr>
    <td><div align="center"><a href="http://www.google.com" target="content">SITE 1</a></div></td>
    <td><div align="center"><a href="http://www.yahoo.com" target="content">SITE 2</a></div></td>
    <td><div align="center"><a href="http://forums.digitalpoint.com" target="content">SITE 3</a></div></td>
    </tr>
    <tr>
    <td bgcolor="#66FF66">&nbsp;</td>
    <td bgcolor="#66FF66">&nbsp;</td>
    <td bgcolor="#66FF66">&nbsp;</td>
    </tr>
    </table>
    </body>
    </html>

    How to develop the webpage without using frames?

    Pls convert frame code into similar seo friendly frameless code page(s) and attach here.

    Expecting direct converted code but not reference of other site links.

    Waiting for your help.

    thanks
     
    Last edited: Jul 6, 2010
    solutions.50webs.com, Jul 6, 2010 IP
  2. jamuasi

    jamuasi Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    though i am not getting, what you are expecting here, but have a suggestion for you:
    you can use there iframe. that is more seo friendly than frames.
     
    jamuasi, Jul 6, 2010 IP
  3. Rainulf

    Rainulf Active Member

    Messages:
    373
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    85
    #3
    You either put all of those in one HTML or use HTML's include:
    <!--#include virtual="whatever.html" --> 
    Code (markup):
    Or use PHP's include or use iframe or a combination of either.
     
    Rainulf, Jul 6, 2010 IP
  4. 6speed

    6speed Guest

    Messages:
    92
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    CSS will be your new best friend :)
     
    6speed, Jul 6, 2010 IP
  5. otshare

    otshare Peon

    Messages:
    70
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Using frames is much complex than creating normal/single html pages. You just create a html file with all your code from your top and bottom frames (excluding your <framset> tags). Then you will have a single web page. To divide the web page logically for headers/body/footer use CSS. you can have a look at http://www.w3schools.com if you don't know css.
     
    otshare, Jul 7, 2010 IP