@html-eslint/no-multiple-h1
<h1><h1>
.
Disallow multiple Rule Details
This rule disallow the usage of multiple <h1></h1>
tags.
Examples of incorrect code for this rule:
<html>
<body>
<h1>head</h1>
<h1>head</h1>
</body>
</html>
Examples of correct code for this rule:
<html>
<body>
<h1>head</h1>
</body>
</html>