Answers for "how to display link on index file"

4

how to link html pages in different folders

<!-- Below this comment is a same folder link -->
<a href="yourfile.html"> same folder</a>
<!-- Below this comment is a link with a parrent folder -->
<a href="../yourfile.html">parrent folder</a>
<!-- Below this comment is a link that you can put the folder directory in -->
<a href="subdir/thefile.html">sub-directory</a>
Posted by: Guest on September-26-2020
0

how link back to home page html without index

<a href="./">Home</a>
Posted by: Guest on June-24-2020

Code answers related to "how to display link on index file"

Browse Popular Code Answers by Language