Home Tutorials HTML Tutorial Favicon
Favicon

Favicon


13. Favicon

A favicon is the small icon shown in the browser tab, and it is typically linked from the document head. It helps identify the site visually.

Syntax

<link rel="icon" href="favicon.ico">

Example

<head>
    <title>My Site</title>
    <link rel="icon" href="favicon.ico">
</head>

Output

The browser tab shows the page title and the favicon icon if the file is available.
Example

🏋️ Test Yourself With Exercises

Take our quiz on Favicon to test your knowledge.

Browse Quizzes »