HTML Image

The HTML Image tool generates the code necessary to create an HTML image using the <img> tag. The following options are available via the tool:

Location: This refers to the location of the image, for example, /images/test.png

Width: This determines the width of the image using the img tag's width attribute.

Height: This determines the height of the image using the img tag's height attribute.

Alternate Text: This determines the alternate text displayed using the img tag's alt attribute.

The following is an example of the output generated by the HTML image tool:

<img src="/images/test.png" width="100" height="150" alt="Test Image">

 

HTML Image Tool