HTML-Relative-Links Flashcards
How do you indicate the relative link to a parent directory?
Use ../ to indicate the folder above the current one, then follow it with the file name in the parent directory.
i.e ../index.html
How do you indicate the relative link to a child directory?
For a child folder, use the name of the child folder, followed by a forward slash then the file name.
i.e music/listings.html
How do you indicate the relative link to a grand parent directory?
Repeat the ../ to indicate that you want to go up two folders, then follow it with the file name is the grandparent folder.
i.e ../../index.html
How do you indicate the relative link to the same directory?
To link to a file in the same folder, just use the file name.
i.e reviews.html