如何设置html网页在浏览器上展示的图标,两行代码

只需要在html页面头部添加:

    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="./icon.ico">
    <link rel="icon" href="./icon.ico" type="image/x-icon"/>
    <link rel="shortcut icon" href="./icon.ico" type="image/x-icon"/>

href="./icon.ico" 就是你要展示的图片的链接,在你网站的根目录或者使用超链接都可以

添加之后,更新一下页面就可以了:

猜你喜欢

转载自blog.csdn.net/weixin_44786530/article/details/130576246