Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i use image in browser tab by using asp.net with vb.net?
Posted

1 solution

For that you need a favicon, just add this line. create a logo in ico format 16x16. use the path accordingly.
HTML
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />

or this:
XML
<head>
  <link rel="SHORTCUT ICON" href="http://www.mydomain.com/myicon.ico"/>
  <title>My Title</title>
</head>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900