URL: /rules/core/favicon

---
title: "Favicon"
description: "Checks for favicon presence"
---

Checks for favicon presence

| | |
|---|---|
| **Rule ID** | `core/favicon` |
| **Category** | [Core SEO](/rules/core) |
| **Scope** | Per-page |
| **Severity** | warning |
| **Weight** | 3/10 |

## Solution

Favicons help with brand recognition and UX. Include multiple formats: `<link rel='icon' href='/favicon.ico'>` for legacy, `<link rel='icon' type='image/svg+xml' href='/favicon.svg'>` for modern browsers, and `<link rel='apple-touch-icon' href='/apple-touch-icon.png'>` for iOS. 32x32px for .ico, 180x180px for Apple touch icon.

## Enable / Disable

### Disable this rule

```toml squirrel.toml
[rules]
disable = ["core/favicon"]
```

### Disable all Core SEO rules

```toml squirrel.toml
[rules]
disable = ["core/*"]
```

### Enable only this rule

```toml squirrel.toml
[rules]
enable = ["core/favicon"]
disable = ["*"]
```
