Images Tutorial
This is a basic tutorial for how to add images, like this:
The basic way to add an image is to use the following code:
<img src="ImageLinkHere.png/jpg/gif" alt="description here">
"src" is the image's source, either a link to an already hosted image (in this case "https://upload.wikimedia.org/wikipedia/commons/9/9f/Old_wikipedia_logo.png") or the name of an image file located in your site's folder, for example:
<img src="FileNameHere.jpg" alt="description here">
Or, if located in a subfolder within your site's folder:
<img src="FolderNameHere/FileNameHere.jpg" alt="description here">
The "alt=" tag is used for screenreaders to help describe what the image is for people who are vision impaired or blind. It is not necessary, but is good practice. A good guide for writing alt text can be found here.