# Semantic HTML Guide This guide provides recommendations for choosing appropriate HTML tags when converting Figma designs to React components, ensuring accessibility and semantic correctness. ## Why Semantic HTML Matters 1. **Accessibility**: Screen readers and assistive technologies rely on semantic HTML 2. **SEO**: Search engines understand content structure better 3. **Maintainability**: Code is more readable and self-documenting 4. **Styling**: Easier to style with CSS selectors 5. **Future-proofing**: Standards-compliant code ages better ## Semantic HTML Elements ### Document Structure #### `
` **Use for:** - Site header - Page header - Section header - Article header **Don't use for:** - Every heading (use h1-h6 instead) - Random containers **Figma Indicators:** - Top section of a page or component - Contains logo, navigation, or title - Labeled "Header" in Figma **Example:** ```tsx
Company Logo
``` #### `