> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. # Rich media in Markdown > Embed images, videos, PDFs, LaTeX equations, and diagrams in your Fern documentation. Enhance your documentation with rich media content including images, videos, PDFs, mathematical equations, and diagrams. ## Images You can use locally stored images or URLs to include images in your Markdown pages. Use either [Markdown syntax](https://www.markdownguide.org/basic-syntax/#images-1) or the [`` HTML tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img) to insert the image. Don't use the `` element, as it has inconsistent browser support. #### Image paths You can reference images using paths relative to the page's location (using `./` or `../`) or relative to the `fern` folder root (using `/`). For example, an image at `fern/assets/images/logo.png` can be referenced from any page as `/assets/images/logo.png`. #### Markdown ```markdown ![Alt text](../../assets/images/logo.png "Optional title") ![Alt text](/assets/images/logo.png "Optional title") ``` #### HTML ```html ``` Common image attributes: | Attribute | Description | | -------------------- | ---------------------------------- | | `src` | URL or path to the image file | | `alt` | Alternative text for accessibility | | `title` | Tooltip text shown on hover | | `width` and `height` | Dimensions of the image (px) | | `noZoom` | Disables image zoom functionality | For more details about the HTML image element and its attributes, see the [MDN documentation on the img element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img). ## PDFs Embed PDFs using the ` ``` See an example of [how it renders](https://elevenlabs.io/docs/conversational-ai/guides/integrations/zendesk#demo-video) on the corresponding docs page from the ElevenLabs documentation. ## External sites You can embed any external web page in your documentation using an `