html input maxlength code example
Example 1: how to specify amout of letters in inputfield in css
<input maxlength="25" placeholder="name" />
Example 2: input maxlength
<form action="/action_page.php">
<label for="username">Username:</label>
<input type="text" id="username" name="username" maxlength="10"><br><br>
<input type="submit" value="Submit">
</form>
Example 3: limit input characters amount
<p><input placeholder="Title" id="input-title" class="text-input" maxlength="80" onkeyup="count_down(this)" name="input" ></p>
<span id="count" style="float: right; font-family: Raleway; font-size:20px; font-weight:600; margin-top:-5px;">80</span><br>
<script>
function count_down(obj){
let element = document.getElementById('count');
element.innerHTML = 80 - obj.value.length;
if(80 - obj.value.length < 5){
element.style.color = "firebrick";
}else{
element.style.color = "#333";
}
}
</script>
Example 4: input max length
<input maxlength="10" />
Example 5: html input max vs maxlength
<input type="text" maxlength="4"/>