logo image not appearing in title bar of browser's tab

Viewed 278

I want to display logo image in the title bar like others, but my code isn't working, PLEASE HELP!!

I have applied to following code but not getting results-

<title> <img src="logo.png"> Company name </title>
1 Answers

The way to add a favicon is:

<link rel="icon" href="favicon.jpg" />

You DO NOT add it to the title bar.

Then to add text to the tab name:

<title>Company Name</title>

I hope this helps.

Related