*🔖 More HTML Tips & Notes*
*7. Comments*  
Use comments to explain your code (they don't show on the page):
```html
```
---
*8. Bold & Italic Text*
```html
Bold or 
Bold (important)  
Italic or 
Emphasis
```
---
*9. Adding a Table*
```html
```
---
*10. HTML Forms (Input Fields)*
```html
```
---
*11. Line Break vs Paragraph*
- `
` = Line break (no gap)  
- `
` = Paragraph (adds spacing)
---
*12. Nest Elements Correctly*
✅ Correct:  
```html
Hello
```
❌ Wrong:  
```html
Hello
```
---
*13. HTML is Not Case Sensitive*
`
` = `
` = `
` → All work. But lowercase is preferred.
---