Appearance
HTML Style
Standards for consistent HTML style.
Follow Code Style Rules
All HTML must follow language-agnostic standards: 2-space indentation, 80-character line limit.
Boolean Attributes
Presence-based (just the name)
html
<input type="checkbox" checked disabled />
<video autoplay controls muted></video>
<form novalidate>
<input required readonly autofocus />
</form>ARIA (explicit values required)
html
<button
aria-pressed="false"
aria-expanded="true"
>
Toggle
</button>
<div aria-hidden="true"></div>Check for boolean attributes with unnecessary values:
sh
node checks/boolean-attrs.js file.htmlWrap Lines at 80 Characters
❌ DON'T
html
<img src="very-long-image-filename-that-exceeds-the-line-limit.jpg" alt="Description" class="responsive-image" loading="lazy">✅ DO
html
<img
src="very-long-image-filename-that-exceeds-the-line-limit.jpg"
alt="Description"
class="responsive-image"
loading="lazy"
/>Self-Close Void Elements
html
<br />
<hr />
<img src="photo.jpg" alt="Photo" />
<input type="text" />
<meta charset="utf-8" />
<link rel="stylesheet" href="styles.css" />Check for non-self-closing void elements:
sh
node checks/void-elements.js file.htmlAttribute Order (recommended)
idclassdata-*aria-*- Other attributes
src,href- Boolean attributes last