how to get an image from a folder in html code example
Example 1: path in html
/ = Root directory
. = This location
.. = Up a directory
./ = Current directory
../ = Parent of current directory
../../ = Two directories backwards
Example 2: how to add image in html from a folder
|-> myhtmlfiles
|-> index.html
|-> images
|-> my_image.jpg
<img src="../images/my_image.jpg">