Image scr
why can't i navigate to my images as they wont display. /images/rabbit.jpg Is what i used or even two ../
6 Replies
Make sure you get an understanding of file paths
Understanding HTML File Paths & How to Use Them
Learn about the differences between absolute and relative HTML file paths and how you can use them to improve your web development skills.
Maybe this will help, didn't read but quick skim seems to cover it ok
It's really important to understand 👍
Thanks for this. It was /images.name of image.jpg. So does this mean (/) is one folder down from master folder? And what do the (.) Periods mean?
If you read the article it goes into it all.
/
root always ./
current ../
up a dir ../../
up two, etc
no name.jpg
is = to ./
in most cases.Understood. Thanks for your very helpfull link and words.