Skip to main content

Image

Overview

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.

Example Syntax

![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>