Placing favicon on several pages on the same site

4

Is it possible for me to use a different favicon for each page of a site?

For example, I have a site with ten pages, I want to put a different favicon on each page.

    
asked by anonymous 15.05.2014 / 20:30

3 answers

5

If it is static, you only have to change the

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

On each html page.

    
15.05.2014 / 20:40
2

The favicon is inserted into the page by html.

Stackoverflow's Faveicon

<link rel="shortcut icon" href="//cdn.sstatic.net/br/img/favicon.ico?v=dc8ddf0e4768">

Just let each page point to a different image.

    
15.05.2014 / 20:36
-1

Hello try this code

<meta property="og:image" content="http://www.seu_site/pasta_de_favicons/nome_do_favicon.png" />

tip: your favicon image must be 192x192 pixels and .png extension

    
12.06.2018 / 03:46