Quarto Markdown Basics: Part 2

Images

Just the image

Write ![This is a photo of a bridge.](img/bridge.png) to produce:

This is a photo of a bridge.

A linked image with a pop-up description

To create a pop-up label that appears when a user hovers over the image with their cursor, add text in quotes like this: [![This is a photo of a bridge.](img/bridge.png)](https://www.patreon.com/adamsantone_phd "A bridge!") to create a linked image like this:

This is a linked photo of a bridge with a pop-up description.

A linked image with alt-text

For even better accessibility, you should add alt-text like this: [![This is a photo of a bridge.](img/bridge.png){fig-alt="Alt text for the bridge image."}](https://www.patreon.com/adamsantone_phd "A bridge").

Alt text for the bridge image.

This is a linked photo of a bridge with alt-text and a pop-up description.