add a favicon code example

Example 1: add favicon to html

<link rel="icon" type="image/png" href="/favicon.png"/>

Example 2: how to add a logo to website icon

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

Example 3: add icon website

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

Example 4: how to set favicon

<link rel="shortcut icon" type="image/jpg" href="/favicon.jpg"/>

Example 5: adding a favicon in html

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

Tags:

Go Example