Favicons-最佳做法
我正在努力寻找Favicons,Touch图标以及现在的Tile图标所需的所有这些不同大小和格式的信息。 我已经阅读了这篇文章:http : //www.jonathantneal.com/blog/understand-the-favicon, 但是我仍然对使用什么模糊不清,在所有设备和浏览器> = IE8上看起来都相当不错。 我认为我应该创建以下内容: ICO favicon.ico(32x32) PNG favicon.png(96x96) 平铺图标 tileicon.png(144x144) 基于此https://github.com/h5bp/html5-boilerplate/issues/1367的 Apple Touch图标 apple-touch-icon-precomposed.png(152x152) ...然后使用此代码为他们服务? <link rel="apple-touch-icon" href="path/to/touchicon.png"> <link rel="icon" href="path/to/favicon.png"> <!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> <!-- or, set /favicon.ico for IE10 win --> <meta name="msapplication-TileColor" content="#D83434"> <meta name="msapplication-TileImage" content="path/to/tileicon.png"> 我有什么想念的吗? 我不清楚这是否涵盖IE 10?