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.