|
Frames can be bad though! Type the name of your main frame page and then try to get the frames to load(yourdomain/MainFrame.html). You should use div tags, set up using css to style them
CSS info
div#header {width, height, color and placement}
div#navbar {style info here}
div#content {style info here}
HTML info
<div id="header">Header info</div>
<div id="navbar">Navigation menu here</div>
<div id="content">main Content here</div>
This makes it easy to link the pages in your site and you have your menu links on all your pages(spiders follow the links they find on a page) and your visitors always have access to all your content.
|