#LinksinHTML #HTMLlinks #hyperlinks
A link is specified using HTML tag a. This tag is called anchor tag and anything between the opening a tag and the closing /a tag becomes part of the link and a user can click that part to reach to the linked document. Following is the simple syntax to use a tag.
Syntax:
a href="Document URL" ... attributes-listLink Text/a
By using Hyperlinks we can perform the following:-
1. Linking to websites
2. Linking to other web pages
3. Linking to specific section of same web page
4. Linking to specific section of other web page.