On the hosting server (Cloudlinux OS) in the root directory there are 2 neighboring directories — public_html and images. In images there is a file alpha.png and in public_html a file index.html.
In index.html I write:
<div id="head"> <img src="../images/alpha.png" alt="picture 1" height="60px"> </div> but the drawing does not load.
".." means that you need to go to the previous directory, i.e. in the root, then you need to go to the images folder and find the file alpha.png.
ps If the images directory and the index.html file are side by side in the same public_html directory, then this code works:
<div id="head"> <img src="images/alpha.png" alt="picture 1" height="60px"> </div> 