HTML File Paths

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


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 location of a file in a website's folder structure.

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

  • Web pages
  • Images
  • Style sheets
  • JavaScripts

Absolute File Paths

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

Example

<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiv_2_QlH-0y7O4YZjJG6YNvlQxxeYiA9PYX2-bXLEJj13zFvD_SzNubCVLi3DpEol8FJeMd8HxV7og5f3dg9o9CeYPJNANqeneg9OJlCbvuCQwktMkpClTBWlyT1Lo__G3AjdEOpscUHV_XyRAuoNuewXC0XK99q2en5BD3cLF3Zxik1xw5Z2msPJG/w262-h144/pic1.jpg" alt="computer and tech">

Check Code »

The <img> tag is explained in the lecture: HTML Images.



Relative File Paths

A relative file path points to a file relative to the current page.

In the following 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="Mountain">

Check Code »

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

Example

<img src="images/picture.jpg" alt="Mountain">

Check Code »

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:

Example

<img src="../images/picture.jpg" alt="Mountain">

Check Code »


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.

Nolej View

☆Hi ! My Name is M Hasaan Mumtaz . In our organisation we are taught you a good lecture for your career making skill We are taught from the "♤Article, ♤Video,♤ through some practical Examples". ♧We are 24/7 Connected with you. ● Our organisation help you for your skill improvement. ☆▪︎▪︎ Thanks for reading.

Post a Comment

Previous Post Next Post

Contact Form