Checkmark

Thank you for your feedback

Add an image to a website using HTML

Learn how to add an image to your website using HTML.

Article ID: SLN20472

After your file is uploaded in the File Manager, you must create the tag in your HTML code that will display the image on the page. In the example below, we create a link to the image called logo.jpg.

<img src="logo.jpg">

Remember, the file and subdirectory names are case sensitive; in other words, subdirectory_1 is not the same as Subdirectory_1, and logo.jpg is not the same as logo.JPG.

Pay close attention to the file extension. In the example above, our image file name ended with .jpg. If we had used .JPG instead, our links would break.