html embed local img code example
Example 1: how to add image in html from a folder
|-> myhtmlfiles
|-> index.html
|-> images
|-> my_image.jpg
<img src="../images/my_image.jpg">
Example 2: html local image
<img src="c:\your file">
|-> myhtmlfiles
|-> index.html
|-> images
|-> my_image.jpg
<img src="../images/my_image.jpg">
<img src="c:\your file">