HTML Head
Understand what goes inside the head tag and why it matters.
David Miller
Dec 1, 2025
31.6k1,424
The head section contains page information, not visible content.
## Example
```html
<head>
<title>My Website</title>
<meta charset="UTF-8">
</head>
```
## Real world usage
- page title in browser tab
- SEO meta data
- charset for languages
## Important
Content inside head is not shown on page.
#HTML#Beginner