How do I link to other pages from my website?

fuck my life. thank you. i was assuming updating the file on my computer would update it, didn't know i had to replace it every time i changed something.
Heh.

You missed a few more

<div id="menu">
<ul>
<li id="current"><a href="Blue.html">Home</a></li>
<li><a href="http://products.coldmouthsores.com/">Products</a></li>
<li><a href="Blue.html">Info</a></li>
</ul>

blue.html doesn't exist and you still are pointing to a subdomain instead of the html file in the products link
 


Heh.

You missed a few more

<div id="menu">
<ul>
<li id="current"><a href="Blue.html">Home</a></li>
<li><a href="http://products.coldmouthsores.com/">Products</a></li>
<li><a href="Blue.html">Info</a></li>
</ul>

blue.html doesn't exist and you still are pointing to a subdomain instead of the html file in the products link
yeah i know, the blue.html is just what came with the template. and the products one i just haven't fixed yet. thanks for the help :D
 
^^ I'm going to give this guy some credit. He jumped into the fucking lion's den with one of the noobiest questions we've seen in a long time... and he survived it. On top of that, I think he learned a few things in the process. This was a win/win in my book. Glad to see someone just digging in and getting their hands dirty with some good ol' html. You've got a future son..no run along and make some internets moniez.
 
^^ I'm going to give this guy some credit. He jumped into the fucking lion's den with one of the noobiest questions we've seen in a long time... and he survived it. On top of that, I think he learned a few things in the process. This was a win/win in my book. Glad to see someone just digging in and getting their hands dirty with some good ol' html. You've got a future son..no run along and make some internets moniez.
Pretty much. Always willing to help those willing to help themselves. And the questions were good for some lulz.
 
Yeah, he was trying hard, and not sitting and asking stupid questions like "Will Findology work for me".
But he was definitely very very lucky.
 
I'm way late on this one, but why not use Fantastico to install Wordpress and build your site that way. Then use all the time you save to start reading up on HTML and following tutorials online? Great first site though for not even knowing how to create additional pages!
 
A+ on everyone actually helping this guy out instead of the utter destruction I saw coming after reading the first few posts.
 
I'm a complete newb, obviously, and this is my first time using HTML. Wasn't sure if I should post this in the newbie section or here..

On my side menu I link to pages like Products, History, About, etc..

do i need to create subdomains all with separate code, or is there code within the main index that just creates a separate page

this is what i have now and it's just linking me to the "/Index of" area


<ul class="sidemenu">
<li><a href="http://home.domain.com">Home</a></li>
<li><a href="http://subdomain.domain.com">example</a></li>
<li><a href="http://subdomain1.domain.com">example</a></li>
<li><a href="http://subdomain2.domain.com">example</a></li>
</ul>
check to see that you have an index.html or home.html file on the subdomains...