HTML Basics
HTML (HyperText Markup Language) is the standard markup language for creating web pages.
## Basic Structure
```html <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> ```
## Common Tags
- **h1-h6**: Headings
- **p**: Paragraph
- **a**: Link
- **img**: Image
- **div**: Division
- **span**: Inline container