Internal links:Those, which will send the user to different parts, inside the same page.
Local links:Are directed to other page on the same website.
Remote links:Will send user to another website.
E-mail links:Allows your users to send you an e-mail to a wished address.
Links with files:Lets your user download files.
Internal links
Are those, which navigate to different parts of the same Html page.
Let's we want to insert a link that directs the user to the bottom of the page.First we will type the following tag :
<a href"#down">Go down</a>
We can observe that after href, in between the quotes we have placed the name of a tag which we will create on the bottom of the page.This name will always be proceeded of the number sign #.
<a name="down"></a>
By inserting this 2 tags in our page we generate a link that redirects the user to the bottom of the page.
Local links
These links are used very commonly on all kind of websites.Every page with more than 1 Html document will need Local links.They allow us to navigate in different html files.To create such link we will apply the tag <a href="name of the archive.html">Anchor text</a>
Remote links
They are used to send the user to another webpage out of ours.They are very common on different pages of the same niche.The format of remote links will be the following:
<a href="name of the website">Text to be displayed</a>
E-mail links
Email links allow users to contact with us per e-mail.We will employ the following tag for this one:
<a href="mailto:your@adress.com>Your adress.com</a>
Links containing files
This type of links allow the user to download any file we want them to do so.The format for this one is the same as a normal link with the exception that we introduce the name of the archive.zip .pdf .doc .xls.. instead of the address.
<a href="document.zip">Zip file </a>
No comments:
Post a Comment