HTML FILE PATH

File Paths in HTML

1. Absolute Paths:

  • Definition : Full URL pointing to a specific location on the web.
  • Example:
  • Absolute

2. Relative Paths:

  • Definition : Path relative to the location of the current HTML file.
  • Example:
  • Same Directory:
  • same
  • Parent Directory:
  • parent
  • Root Directory:
  • root
  • Example:
  • CSS Styleshee:
  • css
  • JavaScript File:
  • js
  • Image:
  • img

Description :

  • / : Root directory of the website.
  • ../ : Moves up one directory.
  • ./ : Current directory (optional).