How to create uppercase in pure HTML

Do you have to use strict HTML? If you can use the style attribute, you can write:

<span style="text-transform:uppercase">This is some text.</span>

Span elements are inline just like text outside of any element.

Leave a Comment