I can't make it work:
<img src="file://d:\image.jpg"> - shows image if I follow the path and refresh the page
<img src="file://d:/image.jpg"> - shows image if I follow the path and refresh the page
<img src="file:\\d:/image.jpg"> - shows image if I follow the path and refresh the page
<img src="d:\image.jpg"> - shows image if I follow the path and refresh the page
<img src="d:/image.jpg"> - The address wasn’t understood
<img src="/image.jpg"> - http://localhost:8000/image.jpg 404
<img src="image.jpg"> - http://localhost:8000/image.jpg 404
Non of them shows the image on the page. What do I do, is it possible?
In Chromium everything gets http://localhost:8000/
added at the beginning of address bar.