# Links URL: /docs/syntax/links/ Section: syntax Tags: syntax, links -------------------------------------------------------------------------------- Links Various ways to create links in Markdown. Inline Links [Link text](https://example.com) [Link with title](https://example.com "Title") Reference Links Define links once, use multiple times: [Link text][ref] [Another link][ref] [ref]: https://example.com Shorthand (link text = reference): [example.com] [example.com]: https://example.com Autolinks URLs and emails are automatically linked: <https://example.com> <user@example.com> Relative Links [Local page](./other-page.md) [Parent directory](../index.md) Fragment Links [Section](#heading-id) [Other page section](./page.md#section) Images as Links [![Alt text](image.png)](https://example.com) -------------------------------------------------------------------------------- Metadata: - Word Count: 64 - Reading Time: 1 minutes