Loading...
Html

Anchor Tag -Linking

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:

  1. href (hyperlink reference): This attribute specify the path or location of the document to which a link is created.
  2. target: This attribute specifies where to display the linked document.
  3. 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>

Leave a Reply

Your email address will not be published. Required fields are marked *