HTML & XHTML Link Tutorials



11
Jul
2009

How To Link To Another Web Page With The HTML & XHTML <a> Tag

In Category: html, links
Posted By Codenique @ 8:47:28 PM
 

Now the Web is all about linking from one page to another, if you have more then one web page, you will most likely want to create links from one page to the next and back again. You can also create links to other peoples web pages.

Read More ››



11
Jul
2009

Learn The Difference Between Absolute And Relative Links

In Category: html, links
Posted By Codenique @ 8:52:09 PM
 

An absolute link also known as an absolute path or full path is basically all the information the server requires to find the document. An absolute link must specify the protocol such as http:// or ftp://, for example. In our case we will use the http:// protocol plus the domain name, which in our example is www.codenique.com and the file name, which in this example is index.htm to make up our absolute link.

Read More ››



11
Jul
2009

How To Code A URL The Correct Way

In Category: html, links
Posted By Codenique @ 8:57:55 PM
 

Now when you write a URL, which is short for Uniform Resource Locator, which is a web pages address. You will need to encode non-printing characters as well as reserved and unsafe characters.

Read More ››



11
Jul
2009

How To Add A Title To A Link

In Category: html, links
Posted By Codenique @ 8:56:55 PM
 

Now if you want to specify a title for a link or just want to give more information related to the link you will need to add the title attribute to the starting <a> tag. The title attribute may be displayed as a tool tip when a user places their mouse pointer over the link. You can type anything you want as the title attributes value.

Read More ››



11
Jul
2009

How To Open Links With The Target Attribute

In Category: html, links
Posted By Codenique @ 8:55:51 PM
 

In order to open a link in a certain area you will have to use the target attribute and reserved target names for the <a> tag. The target attribute is not allowed in HTML 4.01 Strict and XHTML 1.0 Strict DTD’s.

Read More ››



11
Jul
2009

How To Link To A Specific Anchor Using The <a> Tag

In Category: html, links
Posted By Codenique @ 8:54:46 PM
 

What if you want to link within the same document or to a specific section of another document, well this will require two steps. The first step is that you will have to create the anchor also known as a link or target and in the second step you will have to create a link to the anchor.

Read More ››



11
Jul
2009

How To Add An Email Link To Your Web Pages

In Category: html, links
Posted By Codenique @ 8:53:35 PM
 

Now I will show you how to send an email message through a link. In order to do this you will need to use the <a> tag and the href attribute and the protocol mailto: followed by the email address you want the email to be sent to.

Read More ››



11
Jul
2009

Creating Keyboard Shortcuts With The Accesskey Attribute

In Category: html, links
Posted By Codenique @ 8:59:56 PM
 

The accesskey attribute allows your users to select and activate a link from the keyboard without using a mouse, which is known as a hot key or shortcut key. The value of the accesskey attribute can be any single number or letter even a symbol.

Read More ››



11
Jul
2009

How To Link To Computer Files Using The File Protocol

In Category: html, links
Posted By Codenique @ 9:16:24 PM
 

You can also link to your very own computer files or whatever using the file: protocol as long as its on your computer. So it ain’t really useful for the web, it’s only useful for internal HTML & XHTML files so I will only show you what you will need to include for your <a> tags href attributes value to create your file: URL.

Read More ››



11
Jul
2009

How To Transfer Your Web Pages Using The FTP Protocol

In Category: html, links
Posted By Codenique @ 9:18:41 PM
 

Now the ftp: URL also known as the ftp: protocol is used to upload and download files, ftp: stands for File Transfer Protocol, when using the ftp: URL you will usually need a valid username and password in order to upload and download files from a server.

Read More ››



11
Jul
2009

Learn About The Other Types of Links

In Category: html, links
Posted By Codenique @ 9:20:59 PM
 

Yeah, I know even more URLs, but it will all end here just let me list the other types of URLs below and give you a brief description of each to end this short tutorial.

Read More ››