|
|
If this helps you out on make the frames or so you can see how to do it.. just copy and paste the below stuff. and you will kinda understand it... but remember.. to put what you want to save the pages as.. in the right spots... this first example is how to start your frame page... this is the first page you make... this page is like a math problem... you tell it what you want it to do.. and plug in the right stuff and it will do what you want it to...
1.
<HTML>
<HEAD>
<TITLE>Name of your site</TITLE>
</HEAD>
<FRAMESET COLS="200,*">
<FRAME SRC="http://www.yoursite.com/wereeverpageis/page1.html" name="BUTTON" noresize scrolling=auto>
<FRAME SRC="http://www.yoursite.com/wereeverpageis/page2.html" name="MAIN" noresize scrolling=auto>
</FRAMESET>
</HTML>
Now when you save this or when you made this page make sure you named like for example page.html .... this way when you tell someone the link to your site you would say.. my site is:
www.yoursite.com/wereeverpageis/page.html
this page that we made for the frame part of the site.. is on its own page all together..
the page.html would be your frame page.. and everything else loads into this setup... and you will see how later on..
you make a new page for each one of your parts that you will add to your site.... for example.. page1.html is going to be our button frame.... this is were we will add all the links for new pages for our site.... so each time we make a new page.. then we will come back to page1.html which is our button pannel...
Now when you create your button page this is kinda what it will look like...
2.
<HTML>
<HEAD>
<TITLE>button page</TITLE>
<BODY BACKGROUND="background.gif" BGCOLOR="#C0C0C0" TEXT="#FFFF00"
LINK="#0000FF" ALINK="#FF0000" VLINK="#FF00FF">
<font face="Exocet Heavy"> you can add any type of font just make sure if its not common.. add a spot on your site to download it or you dont even have to put this line in if your going to use graphics or just plain text...
<CENTER>
<A HREF="http://www.yoursite.com/wereeverpageis/page2.html" target="MAIN" style="text-decoration: none">
<B><H3><font color="white">MAIN</font></B></H3>
</A>
now since above we labeled page2.html our main page we need to keep it that way... it keeps things easyer to do... and plus its good to have your main page on your button pannel so that way if people want to come back to it. and look at it they can....
<CENTER>
<A HREF="http://www.yoursite.com/wereeverpageis/page3.html" target="MAIN" style="text-decoration: none">
<B><H3><font color="white">SECOND</font></B></H3>
</A>
</BODY>
</HTML>
now basically you just repeat this all the way until you have all the pages you want... just make sure to change the name of the what you want to call the new page and change where it is located too.. so that people dont go to the same page more than once...on a different button...
now to make pages... and make sure to save them as what you name them in the button pannel...
we have the 2 hardest parts out of the way... now just make your main page... which in this case it is page2.html
and you can put whatever you want on your main page..remember your main page is like your opening page.. you want to welcome people to your site. and stuff like that... and then after you finish that make your next pages in the same fashion.... and things should look like this....
CLICK HERE
to see an example on how your site will start to look...
^ Return to Top ^
|
|
|