Path | Description |
---|---|
<img src="photo.jpg"> | photo.jpg is located in the same folder as the current page |
<img src="images/photo.jpg"> | photo.jpg is located in the images folder in the current folder |
<img src="/images/photo.jpg"> | photo.jpg is located in the images folder at the root of the current web |
<img src="../photo.jpg"> | photo.jpg is located in the folder one level up from the current folder |
A file path describes the location of a file in a web site's folder structure.
When linking to external files, file paths are used:
An absolute file path defines the full URL address to an internet file.
A relative file path points to a file relative to the current page.