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"> </td> <td bgcolor="#66FF66"> </td> <td bgcolor="#66FF66"> </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
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.
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.
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.