CSS Tutorial - Text & Fonts
โ๏ธ Text Aur Fonts
๐ Typography Important:
๐ฑ WhatsApp - Simple font
๐ฐ News - Readable font
๐จ Posters - Creative fonts
๐ Font Properties
| Property | Values |
|---|---|
| font-size | 16px, 1.5em, 120% |
| font-family | Arial, sans-serif |
| font-weight | normal, bold, 700 |
| text-align | left, center, right |
| text-decoration | underline, none |
๐ฏ Text Styling
h1 {
font-size: 32px;
font-weight: bold;
text-align: center;
}
Example
p {
font-size: 18px;
font-family: Arial;
text-align: center;
}