3

I searched through many sites, but I failed to get an answer.

Question : I want to change icon as per given in below image in my browser.

enter image description here

Butani Vijay
  • 4,181
  • 2
  • 29
  • 61

4 Answers4

2

you should add this tag to head

<link rel="shortcut icon" href="<YOUR ICON PATH>">

this is a tool to help you to create icon using converter http://www.favicongenerator.com/

Anant Dabhi
  • 10,864
  • 3
  • 31
  • 49
2

Currently chrome and Mozilla does not support this feature if you want check you can check it in either ie or safari, it will show where you want.

  • yuppp i have check it. – Butani Vijay Jul 29 '13 at 16:14
  • I don't believe any browser would or should support changing the icon in the address bar since it provides information about the website, including security-related information. I would be extremely suspicious of any website that tried changing that icon. – Julie in Austin Jan 02 '15 at 17:02
1

Those are called "favicons", and you can set one for your website using a special tag in the HEAD of your HTML. You can find many tutorials on this by Googling (now that you know what they're called).

Wikipedia suggests a tag something like this:

<link rel="shortcut icon" href="http://example.com/myicon.ico" />

As an alternative, your website can provide an image named favicon.ico in the root folder.

rutter
  • 11,242
  • 1
  • 30
  • 46
1

That icon names "favicon". To create Something like that go to THIS LINK, Upload an image and get the favicon.ico file, then put it next to your template page on your host.

To get more information go HERE.

A.Mokhtari
  • 451
  • 5
  • 16