How to Add a Favicon to your website/blog?
What is a Favicon
A Favicon is a icon that represents a website. Have you ever seen one? If not I have an example image below.
![]()
How to install a Favicon on your wordpress blog
Insert the code below in the header.php file.
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
How to install a Favicon on your website
Insert the code below in the head section of an html document.
<link rel="shortcut icon" href="images/favicon.ico" />

