HTML Link
HTML link or hyperlink is a relation between one web page to another web page. Links are very useful during navigating from one page to the other web page.
Followings are the properties of the link.
- An unvisited link is underlined and blue.
- A visited link is underlined and purple.
- An active link is underlined and red.
HTML Link Syntax
Links are created in HTML using <a>
tag.Anything between opening <a>
tag and closing </a>
tag is a link and it is visible to the screen.
General Syntax Of Creating HTML Links
Statement
<a href="url">Link Text </a>
HTML link or hyperlink is a relation between one web page to another web page. Links are very useful during navigating from one page to another web page.