Links

Insert images

Insert images content block
You can insert full-width images into your space, which can be aligned to the left, center, or right. You can optionally include alt text and/or a caption. For accessibility purposes, we highly recommend setting alt text.

Example of an image block

Image blocks can display a gallery of images, like this:
Each image
can have its
own caption
If you are looking to embed external content into your pages, take a look at how to embed a URL.

Git Sync representation in Markdown

//Simple Block
![](https://gitbook.com/images/gitbook.png)
//Block with Caption
![The GitBook Logo](https://gitbook.com/images/gitbook.png)
//Block with Alt text
<figure><img src="https://gitbook.com/images/gitbook.png" alt="The GitBook Logo"></figure>
//Block with Caption and Alt text
<figure><img src="https://gitbook.com/images/gitbook.png" alt="The GitBook Logo"><figcaption><p>GitBook Logo</p></figcaption></figure>