Wednesday, October 7, 2015

Add Favicon to URL

favicon is favorate icon
is useualy located at top of browser
manualy add you favicon

favicon is a small image with ico file extention

you may use gif with 16X16px in size

upload your favicon to your root directory
then look for index
 find <head>
then paste


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


then save


if you are using .gif file extention it looks like this


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

href= the location of your favicon
if you are uploaded your favicon to folder of your website or you get favicon to other website
you change the href=
sample if your fav are in image folder of you root directory


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

or if in other website
<link rel="shortcut icon" type="image/gif" href="www.yoursite,com/favicon.gif"></link>

remember the href is where your files located

No comments:

Post a Comment