Link in Html

In this chapter we learn about Links In Html, so we see that every web page containing different link to other web pages.

Like a website having link home, about us, contact us so these are the link that combine all the website pages together.

With the help of links we redirects from one page to other page.

There is also option for new page to open in same browser window or open a new browser window for new page which is clicked.

Hyperlink are used for redirecting to one page to another page <a href> after href we give the path of the page where want to redirect and then angular bracket we give the name which shown on the web page.

It is not compulsory to show same name on the web page which is given inside href. See Example you can easily understand it.

<a href="page_path_here">Home</a>