Skip to content

Image

An image is an element that can visually enhance text by embedding an image into the document. The image element can additionally have an optional title attribute.

![image](https://example.com)
![image](https://example.com "This is a image title")
<p>
<img src="https://example.com" alt="image" />
</p>
<p>
<img src="https://example.com" alt="image" title="This is a image title" />
</p>