Learn HTML Language

Used for creating webpages that contains texts, graphics, multimedia etc. Learn various tags, attributes that help you in web-development.

HTML Introduction
Tags Reference

HTML Links

HTML links are hyperlinks.

You can click on a link and jump to another document.

When you move the mouse over a link, the mouse arrow will turn into a little hand.

The HTML <a> tag defines a hyperlink. It has the following syntax :

    <a href="url" >link text< /a >

For example

<a href="www.google.com" >link text< /a >

Output:

link text

Share this page on :