This tag is used to create link between web resources, the web resources can be a html document or any resource.
Attributes of Anchor Tag:
- href (hyperlink reference): This attribute specify the path or location of the document to which a link is created.
- target: This attribute specifies where to display the linked document.
- Name: This attribute is used to create named anchors . Named anchors are used to jump from one location to another location. In this same document without allowing the user to school up or down
Example:
<html>
<head> <title> links </title> </head>
<body>
<a href = “table.html.”> click here </a>
</body>