第636天 如何更改浏览器左上角标题旁的图标? #513 [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html)
Activity
xujs0813 commentedon Jan 11, 2021
意思是修改网站图标
此图标应该为一个 .ico 的图标,常为 16*16 / 24 * 24
通过在 html 头部引入如下标签实现:
qitest commentedon Jan 11, 2021
图标在html的head进行引入,如
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
huangGeneYu commentedon Jan 14, 2021
图标在html的head进行引入,如
wyfsama commentedon Jan 21, 2021
在head中引入
<link rel="shortcut icon" href="favicon.ico">