Learn how to use colors in HTML
CSS text properties allow you to style and position text within an element. They include alignment, decoration, transformation, and spacing options.
p {
text-align: center;
text-transform: uppercase;
line-height: 1.5;
letter-spacing: 2px;
}
All major browsers support these text properties.