HTML Images
img is a self closing tag
Syntax:
<img src="[Link]" alt="Description of image">
Attributes:
src – (Required) The path to the image file (can be a URL or local
path).
alt – (Required for accessibility) Text shown if the image can't
load.
width and height – Optional, to set the image size.
title – Optional, tooltip text on hover.
Example
<img src="images/[Link]" alt="A photo of a sunset" width="128"
height="128">