Favicon不能在我的html脚本中工作;编写脚本的其他任何方法?

时间:2017-10-11 05:20:24

标签: html css web favicon

所以,我想要做的是在我的网站选项卡上添加一个favicon,但是当我上传文件和所有内容时,我无法看到favicon。以下是我认为有用的图标线:<link rel = "Shortcut Icon" href = "./Simpsons.ico">。有人可以给我另一种方式来放置图标。 P.S 我已经上传了.ico文件,所以不是上传部分错误,只是脚本失败。

1 个答案:

答案 0 :(得分:2)

您应该将Shortcut Icon重命名为shortcut icon,并提供正确的ico或png文件路径。

for .ico

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

对于.png,您需要指定类型

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