https://blog.csdn.net/dsdsds111/article/details/86713155?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-2.control
在頁面head中添加link
<link rel="shortcut icon" href="圖標地址" type="image/x-icon">
- 1
ps:這種方法中,圖標地址可在線,也可是本地的
例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="http://www.runoob.com/images/tryitimg.gif" type="image/x-icon">
<title>這是一個帶圖片的標簽</title>
</head>
<body>
...
...
...
</body>
</html>