HTML Tags | Adding a link in HTML


Adding a link in HTML is fairly simple all we need to do is add the file location and link title in between the opening and closing <a> tags.
like this:

<a href="http://fawwebdevelopment.blogspot.com">Link to my Blog</a>

The above code will be rendered in a browser like this:

Adding a link in HTML





After adding the above code the browser will change appearance of the link, the text color will be changed to blue and text will be also underlined this is the default behavior by browsers to indicate links. To style this links to appear the way you want please read the tutorial on “how to style links”.

In the HTML Code<a href="http://faqwebdevelopment.blogspot.com">Link to my Blog</a>
<a> stands for Anchor text , “href” attribute specifies the file path .


Comments

Check out

CSS Sprites | What are They?

Login form | Using CSS3

Remove Scrollbars from syntaxhighlighter

Adding a button in HTML | styling a button

HTML5 Semantic Tags | What do they mean

How to remove plus and minus characters from input type number

HTML5 | LocalStorage

jQuery Resources | Support and tutorial help

How CSS3 Works