网站图标不会在Google Chrome中显示
我访问过这些问题,但没有任何答案适用于我:
为什么我的收藏夹图标不再适用于Chrome?
Chrome不显示图标
我的代码
我的网站是http://mikeyaworski.com,这是我用来设置我的图标的代码:
<head>
<title>mikeyaworski</title>
<link
rel="shortcut icon"
href="http://mikeyaworski.com/myicon.ico"
type="image/vnd.microsoft.icon"
>
</head>
这是我的整个代码。
我试过的
而不是rel="shortcut icon"
我试过rel="icon"
而不是type="image/vnd.microsoft.icon"
我试过type="image/x-icon"
而不是href="http://mikeyaworski.com/myicon.ico"
我试过href="myicon.ico"
该图标适用于Mozilla和Internet Explorer。 该图标在Google Chrome中无法使用。 有任何想法吗?
你的html无效,你的浏览器试图修复它。 这样做你的链接标记结束了头部,并被忽略,修复你的HTML,它会工作
<!DOCTYPE>
<html>
<head>
<title>mikeyaworski</title>
<link rel="icon" href="myicon.ico" type="image/vnd.microsoft.icon">
</head>
<body> <!-- body tag should be here -->
<h1 style="text-align:center;font-family:trebuchet ms;" id="top"><br><br>Hompage</h1>
<p>
Coming soon. Until then, view my <a href="http://stackoverflow.com">StackOverflow</a> and other StackExchange profiles:
</p>
<a href="http://stackexchange.com/users/2644958">
<img src="http://stackexchange.com/users/flair/2644958.png?theme=dark" width="208" height="58" alt="profile for mike yaworski on Stack Exchange, a network of free, community-driven Q&A sites" title="profile for mike yaworski on Stack Exchange, a network of free, community-driven Q&A sites">
</a>
<body>
</html>
<!-- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> -->
尝试使用以下代码:
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
或者在下面的链接中进行类似的讨论:
本地(file://)网站图标在Firefox中运行,不在Chrome或Safari中 - 为什么?
更新:或者尝试下面的链接:修复谷歌浏览器上缺少的收藏图标
希望这可以帮助。 谢谢,Jatin
链接地址: http://www.djcxy.com/p/77037.html