Only 51/1000Β spots left
BLACK FRIDAY: Receive 66% off Programiz PRO
+🎁 Receive your free 1:1 personal career coach & fast-track to your first paycheck
Meet my coach
Background Image
Meet my coach
Umir Mohammed
last year
Umircountry asked

What do you mean when you say an image is in the same directory as the HTML file?

Kelish Rai
Expert
last year
Kelish Rai answered

When working on a real project, you might organize your files like this:

website
│── home
β”‚   │── index.html
β”‚   │── banner.png

Here, website is the root folder, and it contains another folder called home. Inside home, both index.html and banner.png are stored in the same location.

When we say "the image is in the same directory as the HTML file", we mean that both files exist within the same folder.

Now, inside index.html, you can easily reference banner.png like this:

This tells the browser to look for banner.png in the same folder as index.html.

HTML
This question was asked as part of the Learn HTML course.