Previous Next

HTML Links

What are Links?

HTML links are used to navigate between pages or websites.

Example

<a href="https://www.google.com">Visit Google</a>

<a href="https://example.com" target="_blank">Open in New Tab</a>

<a href="mailto:test@example.com">Send Email</a>

<a href="index.php?page=home">Go to Home Page</a>
Try it Yourself

href

Destination URL

_blank

Open new tab

mailto

Email link

Internal

Page navigation

Summary

  • Links use <a> tag
  • href defines destination
  • Can open pages, sites, emails
Previous Next