HTML Links
HTML links are generally use to redirect from one web page to another web page.HTML links are hyper links,which means when user click on the button then immidetly redirect on the next web page.
In HTML we use <a> tag to define links in HTML.
Syntax:
<a href="url"></a>
In the above syntax href attribute is use to hold required url.
target attribute
HTML target attribute is use to define where we nedd to open the required link document.We have multiple ways to do that.Syntax:
Syntax: <element ="blank|self|parent|top|framename">