View Full Version : Webpage question
ZeekLTK
26 Sep 2006, 11:41 AM
Where in the HTML code for a page do you set the icon that shows up in the address bar?
Like for bigsoccer, there is a little icon of a soccer ball.
Anyone know the code to define that?
Dante
26 Sep 2006, 04:21 PM
it's known as a favicon
You'll need to make the icon and just name it as favicon.ico, then put the following under the < title > your site's name here </title > part in the head section.
<link rel="SHORTCUT ICON" href="favicon.ico">
kerpow
27 Sep 2006, 05:04 AM
This site does it all for you
http://www.chami.com/html-kit/services/favicon/
ZeekLTK
27 Sep 2006, 11:55 AM
Thanks.