Answers for "how to add a favicon to your website html"

15

how to add favicon in html

<link rel="shortcut icon" type="image/png" href="Link to the image"/>
Posted by: Guest on February-23-2020
2

how to add a logo to website icon

<head>
  <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
Posted by: Guest on August-12-2020
2

add favicon html

<!-- Include this in your head section -->
<link rel="icon" href="demo_icon.gif" type="image/gif" sizes="16x16">

<!-- And for png -->
<link rel="icon" href="demo_icon.png" type="image/png" sizes="16x16">
Posted by: Guest on June-12-2021
2

how to add a favicon to html

<link rel='icon' href='favicon.ico' type='image/x-icon'/ >
Posted by: Guest on October-06-2020

Code answers related to "how to add a favicon to your website html"

Browse Popular Code Answers by Language