# Code Style - HTML/CSS

> Quy tắc viết code HTML/CSS

## Prompt Content

```
Khi viết HTML/CSS, tuân thủ các quy tắc sau:

**HTML:**
- Sử dụng semantic tags: header, nav, main, section, article, footer
- Indent 2 spaces
- Attributes theo thứ tự: id, class, data-*, src/href, alt/title
- Luôn có alt cho images

**CSS:**
- Mobile-first approach
- Sử dụng CSS variables cho colors, fonts
- BEM naming convention khi phù hợp
- Flexbox/Grid cho layout
- Tránh !important

**Responsive breakpoints:**
- Mobile: < 640px
- Tablet: 640px - 1024px  
- Desktop: > 1024px
```

