text transform uppercase first letter code example

Example 1: css capitalize first letter

&::first-letter {
  text-transform: capitalize;
}

Example 2: conveert text to uppercase in input field

<input type="text" class="normal" 
       name="Name" size="20" maxlength="20" 
       style="text-transform:uppercase" />

Example 3: How do you make each word in a text start with a capital letter?

h1 {
  text-transform: capitalize;
}

Example 4: make first letter uppercase

const publication = "freeCodeCamp";
publication[0].toUpperCase() + publication.substring(1);