HTML Linking
HTMLGuide
Let's say I'm on the webpage https://codetips.libr.dev/html/linking
Where do different a tags lead...
<a href="page">
https://codetips.libr.dev/html/linking/page
Goes one page deeper from current url. Appends afterwards.
<a href="/page">
https://codetips.libr.dev/page
Goes back to lowest level.
<a href="./page">
https://codetips.libr.dev/html/linking/page
Practically the same as first one, goes one page deeper from current level.
<a href="../page">
https://codetips.libr.dev/html/page
Goes up one level, then to the page.
<a href="../../page">
https://codetips.libr.dev/page
Goes up two levels, then to the page.