File path in HTML
The article explains how to refer to the file path in HTML.
The article explains how to refer to the file path in HTML.
File path in HTML
The file path is the file's address in the directory structure of the website, which can be used when linking to external files such as:
- Webpage
- Image
- Style Sheet
- JavaScript
anh.jpg placed in the same directory as the current page
anh.jpg placed in the image folder of the current directory
anh.jpg placed in the root image directory (root) of the current web page
anh.jpg is placed in a folder on the current directory one level
Absolute file path
Absolute path is the full URL of the Internet file.

Relative file path
The relative path points to a file related to the current page. In this example, the path points to the file in the last image folder of the current web page.

In this example, the path points to the file in the image folder placed in a folder on a level compared to the current directory.

Usually, use relative links (if possible) because the site will not be tied to a certain URL. All links are available on your computer (localhost) and on the public domain as well as in the future.
Previous article: JavaScript in HTML
The following article: Head element in HTML
You've just finished reading the article "File path in HTML" edited by the TipsMake team. You can save file-path-in-html.pdf to your computer here to read later or print it out. We hope this article has provided you with many useful tech tips and tricks. You can search for similar articles on tips and guides. Thank you for reading and for following us regularly.