Describe anchor "a" tag
In : BSc IT Subject : Web DesigningThe tag stands for Anchor , and it is used to create hyperlinks on a web page. Hyperlinks allow users to navigate from one web page to another , either within the same website (internal linking) or to an external website.
href - Specifies the URL of the page the link goes to.
target - Defines where to open the linked document. Example: _blank opens the link in a new tab.
title - Provides extra information about the link (shown as a tooltip).
<a href="https://www.example.com ">Visit Example</a>