html-relative-links Flashcards
1
Q
How do you indicate the relative link to a parent directory?
A
Use ../ to indicate the folder above the current one,then follow it with the file name.
ex)../index.html
2
Q
How do you indicate the relative link to a child directory?
A
For a child folder, use the name of the child folder,followed by a forward slash, then the file name.
ex)folder/index.html
3
Q
How do you indicate the relative link to a grand parent directory?
A
Repeat the ../ to indicate that you want to go up
two folders (rather than one), then follow it with the file name.
ex)../../index.html
4
Q
How do you indicate the relative link to the same directory?
A
To link to a file in the same folder, just use the file name
ex)index.html