无法上传收藏夹图标

时间:2019-03-18 15:17:13

标签: html web favicon

我无法上传收藏夹图标。在标题空间中,它向我显示代码,而不是图标。

<head>
    <title>
          <link rel="icon" href="g.png" sizes="16x16" type="image/png"> 
    </title>
</head>

那么为什么它不向我显示收藏夹图标?网站图标的名称显然是g.png。

1 个答案:

答案 0 :(得分:2)

更改此:

<head>
    <title>
      <link rel="icon" href="g.png" sizes="16x16" type="image/png"> 
    </title>
</head>

对此:

<head>
    <link rel="shortcut icon" type="image/png" sizes="16x16" href="g.png"/>
</head>

确保您的图像位于同一目录中。 <title>My page</title>是显示在收藏夹图标旁边的文本。在我的示例中,它将是“我的页面”。