Categories:

Most Popular Questions

Most Recently Viewed

Most Recently Added
 
How To Add A Favicon To My Website? (KB10000097)

Favicons are custom icons that are used to personlize your webpage.
It's used to identify your web page when is is bookmarked and/or a shortcut is created.

See below for an example of how a favicon can be added to a webpage:

<!DOCTYPE html 
      PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" 
      type="image/png" 
      href="http://example.com/myicon.png">
[…]
</head>
[…]
</html>



Did you find this helpful?