how do i insert an icon into my web site?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to have an icon attatched to my websit url, so that it shows in
the address area and posts in your favorites if my site is added. how do i do
this? i have already made the icon. i just need to know how to attatch it, in
simple terms.
 
Put it in the root of the web.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
|I would like to have an icon attatched to my websit url, so that it shows
in
| the address area and posts in your favorites if my site is added. how do i
do
| this? i have already made the icon. i just need to know how to attatch it,
in
| simple terms.
 
From latest Boogie Jack newsletter:

http://www.boogiejack.com/AlmostNews/aan123.html

Associate the Icon with Your Web Page

After creating the icon, you must associate it with your Web page. One way
is to save the icon with the default file name of favicon.ico in the root
directory of your domain-for example, www.microsoft.com/favicon.ico. Each
time your Web page is added to a user's favorites, Internet Explorer
automatically searches for this file and places the icon next to all the
favorites and quick links originating from your site.

You can also associate the icon with your Web page by saving the icon with a
file name other than favicon.ico and adding a line of HTML code in the head
section of your Web document. The line of code includes a link tag that
specifies the location and name of the file. You can include this link tag
on a per-page basis.

<HEAD>

<LINK REL="SHORTCUT ICON" HREF="http://www.mydomain.com/myicon.ico">

<TITLE>My Title</TITLE>

</HEAD>
 
How do you creat the icon? (What program?)

cookoonest said:
From latest Boogie Jack newsletter:

http://www.boogiejack.com/AlmostNews/aan123.html

Associate the Icon with Your Web Page

After creating the icon, you must associate it with your Web page. One way
is to save the icon with the default file name of favicon.ico in the root
directory of your domain-for example, www.microsoft.com/favicon.ico. Each
time your Web page is added to a user's favorites, Internet Explorer
automatically searches for this file and places the icon next to all the
favorites and quick links originating from your site.

You can also associate the icon with your Web page by saving the icon with a
file name other than favicon.ico and adding a line of HTML code in the head
section of your Web document. The line of code includes a link tag that
specifies the location and name of the file. You can include this link tag
on a per-page basis.

<HEAD>

<LINK REL="SHORTCUT ICON" HREF="http://www.mydomain.com/myicon.ico">

<TITLE>My Title</TITLE>

</HEAD>
 
Back
Top