If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

How To Add Favicons

Started by megaman, 05-09-2010, 15:00:03

Previous topic - Next topic

megamanTopic starter

Ok every site I go to I see those cool little favicons.  I've had one professionally made but what code do I need to add to get it work and show up..... Please help me out here...

  •  


Sevam

Simply place favicon.ico (16x16) in the root of your site. That is all.

tradedemon

In additon to the above, you'll also have to link to it in your XHTML with something like the below:

<LINK rel="shortcut icon" href="http://example.com/favicon.ico"/>
  •  


naughtymonkey

This website can make it easy for you. - htmlkit.com/services/favicon
  •  

Shikha Singh

The first approach for specifying a favicon is to use the rel attribute value "icon" and to define what the value means via a profile;
In this HTML 4.01 example, the favicon identified via the URI http://example.com/myicon.png as being a favicon:
<!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>




If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...