HTML Links Flashcards
How do link to a file in the same folder as the current HTML document?
< img src = “pictures.jpg” >
The “picture.jpg” file is located in the same folder as the current page.
How do you link to a file in a folder one level up from the folder containing the current HTML document?
< img src = “../picture.jpg” >
The “picture.jpg” file is located in the folder one level up from the current folder.
What is the difference between an absolute file path and a relative file path on the Web?
An absolute file path is the full URL to a file.
A relative file path points to a file relative to the current page.
What is a hyperlink?
A hyperlink is an HTML element = < a > which is used to link from one page to another.