CSS has a property called text-transform
which can be used to make text appear in all uppercase letters.
Here’s an example:
p {
text-transform: uppercase;
}
This will make all the text inside of any <p>
elements appear in uppercase letters.
You can also use the “text-transform” property to make text appear in all lowercase letters, or with each word capitalized.