HTML Tutorial

Links in HTML

Links in HTML are defined using the <a> tag. This link, or hyperlink, enables navigation from one page to another or to different parts of the same page. They also give a link to files or other websites.

How to Create a Link

<a>: This is the anchor tag used to create a link.

href: This attribute stands for “hypertext reference” and specifies the URL (web address) of the page or resource you want to link to.

Link Text: This is the clickable text that users will see and click on. In the example, it’s “Visit Example.com”.

Example

				
					<a href=”https://www.example.com”>Visit Example.com</a>
				
			

Types of Links

  1. Link to Another Webpage:
    This link takes you to the Example.com website.
    <a href="https://www.example.com">Go to Example.com</a>
  2. Link to a Specific Section on the Same Page:

    First, create an anchor point with an id attribute:
    <a href=”#section1″>Jump to Section 1</a>
    This link will take you directly to the “Section 1” heading on the same page

  3. Link to an Email Address:
    <a href=”mailto:[email protected]”>Send Email</a>
    This link opens the user’s default email client to send an email to [email protected].

    Summary

    You can add hypertext links on other pages, sections, or other external resources; it uses the tag. Thus, by including the target URL or email address in the specification of the href attribute, you facilitate users’ navigation and interaction with your content.

Try It Yourself