Can we create a relative link in HTML? For example, how can I write a relative URL on this page
to this sub page
Is this even possible in HTML?
Can we create a relative link in HTML? For example, how can I write a relative URL on this page
to this sub page
Is this even possible in HTML?
You could do:
<a href="./sub-sub-dir">LINK1</a>
or just
<a href="sub-sub-dir">LINK2</a>