在不少页面上都能看到logo 没有ico图标的这里分享一下我经常使用的png 转ico 的网站html
https://www.easyicon.net/ 能够制做也能够直接下载使用网站
http://www.faviconico.org/ 能够直接转换后下载spa
只须要在<title></title>标签后边加上.net
<link rel="icon" href="../images/logo_32.ico" type="image/x-icon" /> 最好在head标签之内
code
SVG:可缩放矢量图形是基于可扩展标记语言(标准通用标记语言的子集),用于描述二维矢量图形的一种图形格式。它由万维网联盟制定,是一个开放标准。(推荐)//不做为图标使用htm
ICO: 图标文件能够存储单个图案、多尺寸、多色板的图标文件。一个图标其实是多张不一样格式的图片的集合体,而且还包含了必定的透明区域。它是Windows的图标文件格式的一种。blog
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>都同样</title> <link rel="icon" href="../all code/caravan_128px_1235153_easyicon.net.ico" type="image/ico" /> </head> 添加ico 图标 <body> </body> </html>