Creating Your Own Web Page is Easy – A Tutorial (Part 3)
Here’s the last part of this tutorial. Our topics are:
Linking other pages and other websites
Using CSS in styling your web pages
Let’s begin here.
Creating and placing hyperlinks
It is very important to create and place hyperlinks in your website to help your visitors navigate your site from pages to pages. These are the links displayed in your web pages that will change the web page displayed when clicked by visitors. These must be prominent and properly placed in your pages. If not, your visitors will be confused and will eventually leave your site unhappy or unsatisfied. Hence, he may never return. So, make sure that your hyperlinks are prominent, descriptive and orderly placed in your pages.
Linking your pages
In page 1, you have to place the following code where you want the visitor to click to go to your page 2:
<a href=”http://your-domain-name.com/page-2-name” title=”description using relevant keywords”>your link description</a>
Looking at the codes, “a” is html anchor tag...