Answers for "html link to html in folder"

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

html link file in another folder

<a href="../thefile.html">my link</a>
Posted by: Guest on May-12-2021
0

html link file in another folder

<a href="subdir/thefile.html">my link</a>
Posted by: Guest on May-12-2021

Code answers related to "html link to html in folder"

Browse Popular Code Answers by Language