HTML Favicon
A favicon (short for “favorite icon”) is an icon that is displayed in the browser’s address bar and tab title for a website. It is used to help users quickly identify the website and distinguish it from other tabs or bookmarks.
![]()
Syntax
<head><link rel="shortcut icon" type="image/x-icon" href="/path/to/favicon.ico" /></head>
Favicons originate as small images (usually 16 x 16 pixels) that are added to a <link> element, which is included in the <head> of the HTML document.
The following attributes are used in the <link> element for favicons:
- The
relattribute tells the browser that the linked resource is a favicon; setting to"shortcut icon"should accommodate most versions of the major browsers. - The
typeattribute specifies the format of the linked resource (i.e.,"image/x-icon"for favicons). - The
hrefattribute specifies the file path of the favicon file.
Note: The most common file format for favicons are files with the
.icoextension. However, other image formats may be supported depending on the browser (e.g.,.png,.gif, and.jpeg). An.icofile can be created using an image editor or online converter tool.
With the favicon file and the link element in the HTML, the favicon should be displayed in the browser’s tab title for the website.
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn HTML on Codecademy
- Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
- Includes 34 Courses
- With Professional Certification
- Beginner Friendly.115 hours
- Start at the beginning by learning HTML basics — an important foundation for building and editing web pages.
- Beginner Friendly.7 hours