<html>
<body>
<h2>The maxlength Attribute</h2>
<p>The maxlength attribute specifies the maximum allowed length for the input field:</p>
<form action="#">
First name:<br>
<input type="text" name="firstname" maxlength="10">
<br>
Last name:<br>
<input type="text" name="lastname">
</form>
</body>
<!-- Mirrored from www.w3schools.com/html/tryit.asp?filename=tryhtml_input_attributes_maxlength by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:33:54 GMT -->
</html>