CSS
Cascading Style Sheets
The language for styling web pages
CSS Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } |