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>
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>
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.