id | title |
---|---|
require-meta-charset |
@html-eslint/require-meta-charset |
Examples of incorrect code for this rule:
<html>
<head>
</head>
</html>
Examples of correct code for this rule:
<html>
<head>
<meta charset="UTF-8">
</head>
</html>