Introduction
CSS (Cascading Style Sheets) is used to style and layout web pages. With CSS, you can control colors, fonts, spacing, and even create animations.
Example: Changing Text Color
h1 {
color: blue;
}
This CSS rule will make all <h1> elements blue.