How to insert a Icon in address bar to a web page?
greetings
<link rel="shortcut icon" href="/favicon.ico">
tight...I've been meaning to ask that question myself. Thanks guys
thx for your help
unfortunatly, im not getting any luck whith that, I even tryed whith the Photoshop Plugin Windows Ico but nothing works
ive tryed method 2...
Method 2
If you don't have access to the root of your web site, you have to add the following tag to your web page so that the browser will know where to look for your icon. Unlike before, this time you can save the icon under any name ending with ".ico" We'll use the name "logo.ico" and assume that your web site is under the directory "~your_directory".
*
<LINK*REL="SHORTCUT*ICON"
*******HREF="/~your_directory/logo.ico">
*
****NOTE:
Above tag should be inserted in-between the <HEAD> and </HEAD> tags.
*
<link rel="icon" href="logo.gif" type="image/x-icon" />
Try this. I use to use on one of my sites,
As a note, there may be some server settings that stop you from doing this. If the suggestions you get here don't work ask your host about it.HTML:<link rel="icon" href="logo.gif" type="image/x-icon" />
thx angelwatt
were do you place the tag?
(...)should be inserted in-between the <HEAD> and </HEAD> tags.(...)
Inside the head tag.
GREAT Angel
It worked at first attempt!
none of the other codes worked...
you are an angel
THX A LOT
Glad it worked. I remember it took me some searching to figure it out the first time I tried it myself.
Code:<link rel="shortcut icon" href="/favicon.ico">
Then make an image, 32x32, then save for web, as gif. Change the extension to .ico, use the code above. Done and Done.