# Favicon — HTML

Source: https://www.geekswithgeeks.com/en/html/html-favicon

> The small icon shown in the browser tab.

## Linking a favicon

A `<link rel="icon">` inside `<head>` sets the small tab icon.

```html
<head>
  <link rel="icon" type="image/png" href="favicon.png">
</head>
```

## Common sizes

A 32×32 or 16×16 PNG works everywhere; add multiple `sizes` links for higher-resolution displays.
