Reputation: 13
I made a website in vscode with the live server extension. The images that I added are working in live server but when I'm opening the file separately they are not.
This is how I linked the images
src="/images/winter.png"
Upvotes: 1
Views: 5266
Reputation: 268
Use relative path src="~/images/winter.png" or src="./images/winter.png" If you want to open the file separately use from the server:- src="http:www.domainname.com/images/winter.png" Please let me know if you have any questions. Thank you
Upvotes: 3