如何更改空白页面的图标?

时间:2017-10-20 23:12:52

标签: html

当我在谷歌浏览器中打开我的一个HTML文档时,打开的选项卡左侧的选项卡上没有任何ICON,我该如何设置?

2 个答案:

答案 0 :(得分:0)

您需要在html的主题部分为html设置title和favicon:

<head>
<title>Your custom title</title>
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>

并将favicon.png放在html页面的同一个文件夹中。

答案 1 :(得分:0)

您需要在最后添加带.ico的图标。 添加如下:

<head>
<title>~~~~</title>
<link rel="shortcut icon" type="image/png" href="favicon.ico">
</head>