I realise this is probably really easy for some of you but I have a question. I need to know how to make links to more pages from your original home page. I know it's got to be an easy code but I just don't know it. Thanks in advance.
Printable View
I realise this is probably really easy for some of you but I have a question. I need to know how to make links to more pages from your original home page. I know it's got to be an easy code but I just don't know it. Thanks in advance.
Hmm, hopefully this will show up! the HTML code for links is:
<a href="about.html">about me</a>
that will show up as about me and, as long as your page is in the same directory, then it will go to a page titled about.html. :) Hope that helps! And if you aren't in the same directory, then just use this:
<a href="http://urlofyourwebsite.com/about.html">about me</a>
(where obviously urlofyourwebsite.com is the url of your website. ^_^)