how to use ico icon code example

Example 1: add icon website

<link rel="icon" href="http://example.com/favicon.png">

Example 2: add icon to website tab

Convert your image to .ico (use https://hnet.com/png-to-ico/)

Rename your ico to favicon

add this to the <head>: <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />

Example 3: html favicon.ico

<! -- For .ico files -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">

<! -- For .jpg/.gif/.png files -->
<link rel="icon" type="image/gif/png" href="favicon.png">

Tags:

Html Example