Search code examples
htmlfavicon

Add favicon to subpages


I have a favicon added to my website.

I know these things work for the entire page but I would like to know if this can be changed.

The website I'm running is static so every page is created manually.
I would like to have the subfolders to have their own favicon.

So I tried to add a favicon the the index.html that is in a subfolder. But it still uses the root's favicon.

Can I change this?


Solution

  • Try something like this:

    <link rel="shortcut icon" type="image/x-icon" href="yourfolder/your_favicon.ico" />