Just joined. what is the path to my files?!

How do I find the path to my uploaded directories/files so I can point to them in my html code? Even when I’m in the file manager, it’s not obvious to me what the path name is to the location of the files I’m editing.

Thanks

@srwx Just the filename with extension …
and If your files are inside your directory…then include the directory name too.

If you open say index.html

You would code your navigation as such

<div class="top-menu"> <span class="menu"><img src="images/nav.png" alt=""/> </span> <ul> <li><a href="index.html" class="active">home</a></li> <li><a href="book.html">book</a></li> <li><a href="services.html">services</a></li> <li><a href="gallery.html">gallery</a></li> <li><a href="shop.html">shop</a></li> <li><a href="contact.html">contact</a></li> </ul> </div>

Just the page names and then you’d create the pages book.html etc etc and upload all the files into the public_html folder.

Thank you, folks! Ugh, that’s so much much more straight forward than I thought…