CSS Text Transform
The text-transform property allows you to change the capitalization of text. Valid values are: uppercase, capitalize, lowercase, initial, inherit, and none
Uppercase
text-transform: uppercase;
The text transform with uppercase
capitalize
text-transform: capitalize;
The text transform with capitalize
lowercase
text-transform: lowercase;