JSFiddle - React, Tailwind, and code Playground

by Sergey khorev

HTML

<!DOCTYPE HTML>
<html>
 <head>
  <meta charset="utf-8">
  <title>Тег INPUT, атрибут maxlength</title>
 </head>
 <body>

  <form  action="handler.php">
   <p><input type="text" size="30" maxlength="10"></p>
   <p><input type="submit" name="submit" value="Отправить"></p>
  </form> 

 </body>
</html>