Skip to content
Markdown

Links and Images

Inline, reference, and auto links plus images.

By EZ4Code Team
linkimagereference

Code

Inline link: [text](https://example.com)

Link with title: [text](https://example.com "Title")

Reference link: [text][ref]
[ref]: https://example.com

Auto link: <https://example.com>

Image: ![alt text](image.png "Title")

Reference image: ![alt text][img]
[img]: image.png

Explanation

Links come in inline, reference, and autolink forms; reference links keep prose clean by deferring URLs to a definition block. Images share the same syntax as links but are prefixed with an exclamation mark. Titles render as tooltips in most browsers.

More Markdown Snippets