Website
Home.html
Pages
Page1.html
Above is a file tree that I'm trying to navigate. How can I reference Home.html from Page1.html?
Website
Home.html
Pages
Page1.html
Above is a file tree that I'm trying to navigate. How can I reference Home.html from Page1.html?
Prefacing a URI with ../
( e.g. <a href="../Home.html">Home</a>
) will move up the tree by one folder (repeat as necessary).
Prefacing a URI with /
( e.g. <a href="/Home.html">Home</a>
) will move to the tree's root.