- 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: Links
HTML links, created using the <a> element, allow you to navigate between different web pages or resources.
- Basic Link:
This creates a link labeled "Visit Example Website" that directs users to https://www.example.com when clicked.
<a href="https://www.example.com">Visit Example Website</a>
- Linking to a Different Page on the Same Site:
Here, clicking "About Us" would take the user to a page with the URL https://yoursite.com/about.
<a href="/about">About Us</a>
- Linking to a Specific Section on a Page:
This link jumps to a specific section within the same page, identified by an id attribute. For example, <div id="section-id">...</div>.
<a href="#section-id">Jump to Section</a>
- Opening Links in a New Tab:
Adding target="_blank" opens the link in a new tab or window.
<a href="https://www.example.com" target="_blank">Visit Example Website</a>
- Linking an Email Address:
This creates a link that opens the default email client with the recipient's email address pre-filled.
<a href="mailto:[email protected]">Email Us</a>
- Linking to a File (e.g., PDF, Image):
The link above downloads a PDF file named document.pdf when clicked.
<a href="document.pdf">Download PDF</a>
- Using Images as Links:
<a href="https://www.example.com">
<img src="image.jpg" alt="Image Link">
</a>
This creates an image that, when clicked, navigates to https://www.example.com
- Link with a Title Attribute:
Adding a title attribute provides a tooltip when the user hovers over the link.
<a href="https://www.example.com" title="Visit Example Website">Visit Example Website</a>
HTML links are versatile and can be used in various ways to connect content within a webpage, link to external resources, or enable user interaction such as downloading files or sending emails.