如何使页面标题带有图标?


73

我想在标题的图标区域而不是默认的白色文档中显示我网站的徽标。就像堆栈溢出一样。

Answers:


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

将此添加到您的HTML Head。当然,文件“ favicon.ico”必须存在。我认为16x16或32x32像素的文件是最好的。


4
对于代码,我认为维基百科具有更好的解释和更好的跨浏览器兼容性。 zh.wikipedia.org/wiki/Favicon
Andy Li 2009年

谢谢!只是从我的网站上获取了此代码行,由于它有效,所以我认为这不太可能。;-)
NiklasMM 2009年

谢谢尼克!Kust必须将我的图像转换为ico才能在IE中运行。<link rel =“ shortcut icon” href =“ / Content / images / MyIcon.ico” />
littlechris

如果在红宝石导轨中使用<link rel="icon" type="image/png" href="<%= asset_path('icon_name.jpg')%>">
Sunil Kumar

21

这是一个有趣的问题,因此请检查一下是否有用作网站图标的图像,然后

将此添加到您的脚本

   <link rel="icon" type="image/gif" href="animated_favicon1.gif" />

否则,如果您的网站图标带有图标,则选择

 <link rel="shortcut icon" href="favicon.ico" />

我总是使用http://www.iconspedia.com/获取更多图标

如果我的答案解决了您的问题,那么请给我投票






2

该代码将绝对有效。在评论中,我看到他们使用的ejs syntex不仅适用于所有使用express.js的人员,

<link rel="icon" href="demo_icon.gif" sizes="16x16">
<title> Reddit</title>

您还可以添加png和jpg


1

如果在红宝石导轨中使用,请使用以下代码。

为了计算文件的路径,asset_path函数用于在嵌入其中的rails代码中查找我们正在使用的图像 <%= code %>

<link rel="icon" type="image/png" href="<%= asset_path('icon_name.jpg')%>">

1

如果您想使用URL,则可以使用此代码。

<link rel="shortcut icon" type="image/x-icon" href="https://..." />
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.