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


<p>
<img src="https://example.com" alt="image" />
</p>
<p>
<img src="https://example.com" alt="image" title="This is a image title" />
</p>