I am trying to refer to an image file which is outside source folder. The current structure is
Images/img1.png
My Source Folder / Page-1 / index.html
From the index.html file, I want to refer to img1.png file.
I tried the following codes
<img src="../Images/img1.png">
<img src="../../Images/img1.png">
I don't want to hardcode the location because we have to deploy the code in production server and we are restricted to access the server and the details of the server. We only know that the server is Windows based server.
Can any one please help me? Thank you.