React Guideline: Accessibility — Use semantic HTML. Description: Proper HTML elements for their purpose. Do: button for clicks nav for navigation. Don't: div with onClick for buttons. Good Example: <button onClick={...}>. Bad Example: <div onClick={...}>. Severity: High. Docs: https://react.dev/reference/react-dom/components#all-html-components.