CSS is used to style and design web pages beautifully.
CSS stands for Cascading Style Sheets.
It controls colors, layouts, fonts, spacing and animations.
body{
background:#f5f5f5;
}
h1{
color:royalblue;
text-align:center;
}
p{
font-size:18px;
color:#333;
}