Tuesday, 21 July 2015

Web Designing Tutorials(Linking to other Web Pages)

Linking in HTML code is done with the anchor tag, the tag. The letter “A” in the tag is then followed by an attribute. For a link to another web page, the “A” is followed by “HREF”. To set a bookmark in the same page, the “A” is followed by “NAME”, which you’ll see how to do later.

Take a look at this example, which is a link to the popular search engine Google:

Google Search Engine

Notice where all the angle brackets (< >) are in the link. After the first one, we have the “A” part of the tag. Then we have the HREF part, signifying a link to another web page. After that comes an equals sign (=). After the equals sign comes the address of the web page itself. The address is case sensitive, so if there is a capital letter in the address, make sure to include it. This addresswww.google.com is different from this address www.gOOgle.com.

Read More...

No comments:

Post a Comment