Anonymous

How do I change the favicon?

1

1 Answers

Adam  Groom Profile
Adam Groom , Web Developer, answered

You specify a favicon in the head of your html document using the following markup:

<link rel="icon" type="image/png" href="/somewhere/myicon.png" />

Simply change the href to the location of your favicon image.

If this markup doesn't exist in your html then you probably have a favicon.ico file in your root directory, most browsers know to look for this, but the above code will override it.

Answer Question

Anonymous