Your Guide to Professional
Web Site Design and Development

• HTML Tips
• HTML Codes
• Web Development
• Web Design Tips
• JavaScript Codes
• 216 Web Safe Colors
• CSS Tutorial
• JavaScript Tutorial
•
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design Tips | Javascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Creating HTML Hyperlinks within a Web Page


The ANCHOR tag is used to create a hyperlink within a web page.

To link to a web page within the same directory of your web site, you only need to include the page name within your HTML code.

<A HREF="yourpage.html">Text</A>


When linking to a web page within your web site in a different directory, you must include the directory name with your page name.

<A HREF="yourdirectory/yourpage.html">Text</A>


When linking to another web site, you must include the full URL.

<A HREF="http://www.site.com">Text</A>


 More Web Design Tips