Hello Html

The anchor (a) tag

Links are also an integral part of every web page. You can add links to text or images that will enable the

user to click on them in order to be directed to another file or webpage. In HTML, links are defined using

the tag. Use the href attribute to define the link's destination address:

The target Attribute

The target attribute specifies where to open the linked document. Giving a _blank value to your attribute will have the link open in a new window or new tab:

target="_blank" : the document referenced by the link is displayed in a new browser window.

target="_self" : Using this value the linked document will be displayed in the same frame or window where the link is.