0

How can I change the title icon using html in chrome browser? I need to change the title bar icon with a saved image on my computer, I watched many tutorial to find it so easy to do but still it doesn't work.

TheGrimBoo
  • 199
  • 1
  • 4
  • 14

2 Answers2

3

That's called a "favicon." The standard way to do it is to create a .png file of the icon and add a tag like this to the <head> of your page(s)

<link rel="icon" type="image/png" href="http://example.com/myicon.png">

Here's a good reference - https://www.w3.org/2005/10/howto-favicon

Michael Coker
  • 52,626
  • 5
  • 64
  • 64
0

If think you're talking about the favicon, so to set it in HTML, put this code in your <head> :
<link rel="icon" type="image/png" href="pathToYourIcon.png" />

BDeliers
  • 74
  • 1
  • 12