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.
Asked
Active
Viewed 1.7k times
2 Answers
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
-
Thanks, it worked finally :) – TheGrimBoo Jan 13 '17 at 23:10
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
-
-
You can mark my answer as "best answer" (the green tick) if it helped you, it will help the others :) – BDeliers Jan 13 '17 at 23:13