Skip to content

required-h1

Require h1 element.

Severity

error

❌ Incorrect

html
<body><p>text</p></body>

✅ Correct

html
<body><h1>Title</h1><p>text</p></body>

Reference

Configuration

json
{
  "rules": {
    "required-h1": "error"
  }
}

Released under the MIT License.