Adding an Image?

Hi,

In chapter 2 of Build Your Own Site, I am having trouble getting the image to show. The markup is correct but I must be missing something where it says to grab the divers-circle.jpg file and put it into your websites folder.

I moved it to where I am saving the html files. What am I overlooking.

Thanks for the help.

Kevin

It’s important to place the image file in the right place in relation to the page it’s being referenced from. So, if your link looks like this

<img src="divers-circle.jpg">

then you must make sure that the divers-circle.jpg image is in the same folder as the current page, and at the same ‘level’. E.g. your folder structure should be like this:

/folder/
    page.html
    divers-circle.jpg

not

/folder/
    page.html
    /subfolder/
        divers-circle.jpg

Does that help?

Thanks, that helps a lot.

Also, helps to see spelling errors. :slight_smile:

Sorry about that.