How to Make Something a Link?

Use an HTML anchor tag: `Link text`

Set the `href` attribute to the destination URL

Put the clickable text between the opening and closing `` tags

Use `target=”_blank”` if you want the link to open in a new tab

Add `rel=”noopener noreferrer”` when using `target=”_blank”`

Use a relative path for links within the same site, such as `About`

Use `mailto:` for email links, such as `Email`

Use `tel:` for phone links, such as `Call`

In Markdown, use `[link text](https://example.com)`

In plain text platforms, paste a full URL if automatic linking is supported

Suggested for You

Trending Today