Common link formats
Most documents only need a few link patterns.
- Use `[text](URL)` for a normal link.
- Use `` for an image.
- Use `[Email us](mailto:[email protected])` for email links.
Syntax guide
Markdown links use a readable pattern: put the visible text in brackets and the destination in parentheses.
Quick answer
A Markdown link looks like `[label](https://example.com)`. The label is what readers see; the URL is where the link goes.
Reference
markdown link
Most documents only need a few link patterns.
Good link text tells readers what will happen before they click.
Examples
[Open MarkdownABC](/)The text in brackets becomes the clickable label.
Read the [Markdown guide][guide].
[guide]: /markdown-cheat-sheetReference links keep long URLs out of the main paragraph.
FAQ
Use `[link text](URL)`. The bracket text appears in the document, and the URL in parentheses is the destination.
Use ``. It is the same basic shape as a link, with an exclamation mark at the front.
Standard Markdown does not include a new-tab setting. Some platforms support extensions, but HTML is usually needed for that behavior.