Reprence Html CSS javascript PHP MySQL Bootsrap

HTML File Paths

A file path describes the location of a file in a web site's folder structure.

File Path Examples

path1

HTML File Paths

A file path describes the location of a file in a web site's folder structure.

File paths are used when linking to external files, like:

path2

Absolute File Paths

An absolute file path is the full URL to a file:


Relative File Paths

Relative File Paths

In the following example, the file path points to a file in the images folder located at the root of the current web:

In the following example, the file path points to a file in the images folder located in the current folder:


In the following example, the file path points to a file in the images folder located in the folder one level up from the current folder:



Best Practice

It is best practice to use relative file paths (if possible).

When using relative file paths, your web pages will not be bound to your current base URL. All links will work on your own computer (localhost) as well as on your current public domain and your future public domains.