textbox limit characters html code example
Example 1: how to specify amout of letters in inputfield in css
<input maxlength="25" placeholder="name" />
Example 2: text limit in html
<span style="
display:inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 13ch;">
Lorem ipsum dolor sit amet
</span>