insert favicon code example

Example 1: how to add a logo to website icon

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

Example 2: add favicon html

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

Example 3: favicon html

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

Example 4: 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"/>

Example 5: favicon html

<!DOCTYPE html 
      PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" 
      type="image/png" 
      href="http://example.com/myicon.png">
[…]
</head>
[…]
</html>

Tags:

Html Example