HTML File Paths: A file path describes the location of a file in a web site’s folder structure.
An HTML file path is used to describe the location of a file in a website folder. File paths resemble a location of file for an internet browser. We can interface any outside resource to include our HTML file with the assistance of file paths like images, file, CSS file, JS file, video, and so on
In this tutorial, you will learn-
In this article, you will learn-
File Path Examples
Path | Description |
<img src=”picture.jpg”> | The “picture.jpg” file is located in the same folder as the current page |
<img src=”images/picture.jpg”> | The “picture.jpg” file is located in the images folder in the current folder |
<img src=”/images/picture.jpg”> | The “picture.jpg” file is located in the images folder at the root of the current web |
<img src=”../picture.jpg”> | The “picture.jpg” file is located in the folder one level up from the current folder |
HTML File Paths
A file path describes the area of a file in a site’s folder structure.
File paths are used when linking to outside files, like:
- Web pages
- Images
- Style sheets
- JavaScripts
Absolute File Paths
An absolute file path is the full URL to a file:
Example
<img src="https://www.worldofitech.com/images/picture.jpg" alt="HTML">
Relative File Paths
A relative file path points to a file relative to the current page.
In the accompanying example, the file path points to a file in the images folder located at the root of the current web:
Example
<img src="/images/picture.jpg" alt="HTML">
In the accompanying example, the file path points to a file in the images folder located in the current folder:
Example
<img src="images/picture.jpg" alt="HTML">
In the accompanying example, the file path points to a file in the images folder located in the folder one level up from the current folder:
Example
<img src="../images/picture.jpg" alt="HTML">
Best Practice
It is best practice to use relative file paths (if conceivable).
When using relative file paths, your site pages won’t be bound to your present base URL. All links will work on your own computer (localhost) as well on your present public domain and your future public domains.
HTML Block and Inline Elements
Thanks for reading! We hope you found this tutorial helpful and we would love to hear your feedback in the Comments section below. And show us what you’ve learned by sharing your photos and creative projects with us.