html add image from local file 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: html relative path
<!--The ./ means the contact.html file is in the same file
as the file that is linked to it-->
<a href="./contact.html">Contact</a>
Example 3: html local image
<img src="c:\your file">
Example 4: how to insert a local image html
Tutorial: Inserting a local image in HTML
Disclaimer: I only know how to do it on Windows.
(steps coming soon)