Most browsers can display in-line images that are in JPEG or GIF format. Use the img tag with src attribute to include an image in you HTML page:
where image_link is the the relative, absolute or remote URL link of the image file.
Example:
<p align = center> An image mixed in with text <br> <img src="Images/gromit.gif" align=middle alt="wallace and gromit"> </p>
Which looks like this when viewed from a browser:
An image mixed in with text
In-line Image and Text