用于嵌入链接元素的 rel 和 type 属性的内容

发布于 2024-11-05 11:51:55 字数 191 浏览 0 评论 0原文

为了在网页上嵌入网站图标,我们使用 元素。像这样:

<link rel="What goes here?" type="What goes here?" href="/favicon.ico"/>

我应该在 rel 和 type 属性中放入什么值?

To embed a favicon on a webpage we use the <link> element. Something like this:

<link rel="What goes here?" type="What goes here?" href="/favicon.ico"/>

What value do I put in the rel and type attributes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆梦 2024-11-12 11:51:55

http://www.w3.org/2005/10/howto-favicon
http://en.wikipedia.org/wiki/Favicon

<link rel="icon" 
     type="image/png" 
      href="http://example.com/myicon.png">

根据维基百科,不支持上述内容通过 IE

<link rel="shortcut icon" href="http://example.com/myicon.ico" />

这个解决方案对我来说似乎是最好的:-

favicon.ico located in the web site's root

http://www.w3.org/2005/10/howto-favicon
http://en.wikipedia.org/wiki/Favicon

<link rel="icon" 
     type="image/png" 
      href="http://example.com/myicon.png">

according to wikipedia the above is not supported by IE

<link rel="shortcut icon" href="http://example.com/myicon.ico" />

this solution seems the best to me: -

favicon.ico located in the web site's root
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文