I've worked through with all the different versions of favicon that are needed now with all these ios, droid, wphone and desktops, so quite a few different versions are needed and this code:
- Code: Select all
<link rel="apple-touch-icon" sizes="57x57" href="http://bozhenko.guru/images/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://bozhenko.guru/images/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://bozhenko.guru/images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://bozhenko.guru/images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://bozhenko.guru/images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://bozhenko.guru/images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://bozhenko.guru/images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://bozhenko.guru/images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://bozhenko.guru/images/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="http://bozhenko.guru/images/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="http://bozhenko.guru/images/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="http://bozhenko.guru/images/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="http://bozhenko.guru/images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="http://bozhenko.guru/images/favicons/manifest.json">
<link rel="shortcut icon" href="http://bozhenko.guru/images/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="msapplication-TileImage" content="http://bozhenko.guru/images/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="http://bozhenko.guru/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
needs to be placed into the <head> section. So, which file should I add it to or if there's any way to plug it in from the admin panel of the site? Thanks!