I have an HTML file on my GitHub repository that is located within a sub-directory within a sub-directory. In this file, I need to reference a favicon that is located close to the root of the repository.
At the moment my code looks like this:
Code:
<link href="../../../img/favicon.ico">
This works, but I'm wondering if there is a simpler way to do this. I've tried
but that doesn't seem to work.