maxlength input text code example
Example 1: how to specify amout of letters in inputfield in css
<input maxlength="25" placeholder="name" />
Example 2: html input max vs maxlength
<input type="text" maxlength="4"/>
<input maxlength="25" placeholder="name" />
<input type="text" maxlength="4"/>