首页 > 解决方案 > 在我的 chrome 标签的左上角有一个地球符号,我该如何更改它?

问题描述

有人可以建议如何最好地更改我创建的网站上的任何符号吗?

谷歌浏览器标签,左侧

标签: html

解决方案


This is called a favicon ! You can just use this in your page's <head> :

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

(You just have to replace the url and image/png by image/jpg if necessary)


推荐阅读