网站网址旁边的图片图标
问题描述:
我想获取有关图标的信息,这些图标显示在Web浏览器的站点URL旁边.这是某些浏览器特定的功能吗?我们在哪里指定图标来源,即它是否在网页本身的某个标签中?
I would like to have information about the icons which are displayed alongside the site URLs on a web browser. Is this some browser specific feature? Where do we specify the icon source, ie, is it in some tag on the web page itself ?
答
这些图标称为收藏夹
大多数网络浏览器都支持 http://mysite.com/favicon.ico ,但是正确的方法是是要在头像中包含一个图标元标记.
Most web browsers support http://mysite.com/favicon.ico but the proper way to do it is to include an icon meta tag in the head profile.
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon"
type="image/png"
href="/somewhere/myicon.png" />
[…]
</head>
您最好的选择是对两个图标图像都做同样的事情.
Your best bet is to probably do both with the same icon image.