View Full Version : Adding pages to site
kinipela
18th September 08, 08:38 PM
Hello, I am new at this so bare with me. We started a site and have my domain through godaddy.com. I have the front page built and up. My question is can anyone tell me how i add pages. Such as if my site is blah.com and i have reviews i want to post. where do i got so i can add a link and have it go to blah.com/reviews. i cant seem to find the place. thank you:roll:
simonpeterong
19th September 08, 04:38 AM
are you using any CMS? or is it a static HTML? Or is it build w/PHP?
d0gMa
29th October 08, 08:50 PM
www.w3schools.com click HTML on the menu at the side and start from basics,
quick answer is if your linking to an external site (another website)
then html is
<a href="http://www.whateversiteyouwant.com">whatever you want the link to say</a>
if you have two files in the same folder on your own site then say your on index.html and you want to go to feckers.html
<a href="feckers.html">whatever you want the link to say</a>
if you are accessing a file in another folder then use ../ to go back one level or /foldername to go into a folder of that name
ie
mainsite
|
index page1 page2 page3 folder
|
page4
to get to page 4 from index
<a href="folder/page4.html">whatever you want the link to say</a>
to get to index from page 4
<a href="../index.html">whatever you want the link to say</a>
vBulletin® v3.8.4, Copyright ©2000-2013, Jelsoft Enterprises Ltd.