text field uppercase code example
Example 1: conveert text to uppercase in input field
<input type="text" class="normal"
name="Name" size="20" maxlength="20"
style="text-transform:uppercase" />
Example 2: input uppercase with css
input {
text-transform: uppercase;
}