- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: Anchor Tag
The anchor tag (<a>) in HTML is used to create hyperlinks, allowing users to navigate between different web pages or sections within the same page. Anchor tags are essential for creating clickable links that direct users to specific URLs or locations within a document. Here are the key points about the anchor tag:
Usage:
- The <a> tag is used to create hyperlinks, also known as anchor links, which allow users to navigate to other web pages or sections within the same page.
- Example:
<a href="https://www.example.com">Visit Example Website</a>
Href Attribute:
- The href attribute in the <a> tag specifies the URL (Uniform Resource Locator) or destination where the link should navigate when clicked.
- It can be an absolute URL (starting with http:// or https://) or a relative URL (relative to the current document).
- Example with relative URL:
<a href="page2.html">Go to Page 2</a>
Text Content:
- The text content between the opening and closing <a> tags serves as the clickable link text that users see.
- Example:
<a href="https://www.example.com">Visit Example Website</a>
Target Attribute:
- The target attribute is used to specify how the linked content should be opened.
- _blank: Opens the linked document in a new browser window or tab.
- _self: Opens the linked document in the same window/tab (default behavior).
- _parent: Opens the linked document in the parent frame.
- _top: Opens the linked document in the full body of the window.
- Example with target attribute:
<a href="https://www.example.com" target="_blank">Visit Example Website</a>
Linking to Sections within the Same Page (Anchor Links):
- Anchor tags can be used to create internal links within the same page by using the href attribute with a hash (#) followed by the ID of the target element.
- Example:
<a href="#section1">Jump to Section 1</a>
...
<h2 id="section1">Section 1</h2>
Accessibility Considerations:
- Ensure that anchor tags have meaningful and descriptive link text to improve accessibility and SEO (Search Engine Optimization).
- Use proper contrast and styling to make clickable links visually distinguishable.
Styling with CSS:
- You can apply CSS styles to anchor tags to control their appearance, such as text color, font size, underline, hover effects, etc.
- Example CSS:
a {
color: blue;
text-decoration: underline;
}
a:hover {
color: red;
}
The anchor tag is a fundamental element in HTML for creating clickable links, enabling seamless navigation and interaction between web pages or sections within a document.