capitalize tag in html code example
Example 1: html capitalize
<p style="text-transform: capitalize;"> All words will be capitalized </p>
Example 2: How do you make each word in a text start with a capital letter?
h1 {
text-transform: capitalize;
}