You can easily change the case of a text using css like this: Example source text: A nice website To force text to lowercase: text-transform: lowercase; Output of example text using this style: a nice website To force text to uppercase: text-transform: uppercase; Output of example text using this style: A NICE WEBSITE To force text to propercase: text-transform: capitalize; Output of example text using this style: A Nice Website