How do you create a link to a new page within your own website?
I’m building a website for the first time and although I know a little bit about HTML from a college course I took about 5 years ago I don’t know how to create a link for a new page. I lost my HTML book in a house fire 2 years ago so I have been visiting various websites to get help but I have not been able to find the information that I need.
Tagged with: building a website • html book • little bit
Filed under: Build Own Website
Like this post? Subscribe to my RSS feed and get loads more!

















The basic code to do that is:
<a href="page2.html"></a>
or send it to whatever your page is called.
Regards, Zyfert
http://xsitepro.cybersprout.com
Create a link like this:
<a href="URL">Text</a>
while replacing URL and Text with the appropriate info.
If you’re wanting to open a link in a new window use this:
<a href="URL" target="_blank">Text</a>
while replacing URL and Text again of course.
What software program are you using? You can find your answer in the help files.
Chuck
http://www.ebusinesswiz.com
check out http://www.w3schools.com for tutorials
<a href="destinationpage.html">link</a>
Or if you’re linking to another website,
<a href="http://www.destinationpage.com"> link</a>