How can you make a text input field allow a maximum of 100 characters using HTML attributes?
<input type="text" id="textField" max="100">
<input type="text" id="textField" limit="100">
<input type="text" id="textField" length="100">
<input type="text" id="textField" maxlength="100">