1. 程式人生 > >HTML自定義網頁頭部小圖示

HTML自定義網頁頭部小圖示

實現效果:網頁頭部   百度一下,你就知道  前面的圖示;

實現方法:

首先圖示必須是xxx.ico格式的圖片,假定你的圖示命名為為 favicon.ico  且和html頁面在同一個根目錄下,實現程式碼為:

<title>網頁title</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>

就像用link引入外部css樣式一樣,用lilnk引入圖示:

rel = "icon"      type = "image/x-icon"    href為圖示的路徑。

實現的效果和百度的一樣。