absolute path vs relative path html code example
Example 1: absolute path and relative path
/* Absolute Path */
https://www.w3schools.com/images/picture.jpg
/* Relative Path */
/images/picture.jpg
Example 2: path in html
/ = Root directory
. = This location
.. = Up a directory
./ = Current directory
../ = Parent of current directory
../../ = Two directories backwards
Example 3: html local image
<img src="c:\your file">