html5 size input greater code example
Example: size not allowed on input html
<!DOCTYPE html>
<html>
<head>
<title>HTML maxlength attribute</title>
</head>
<body>
<form action = "/cgi-bin/hello_get.cgi" method = "get">
Student Name:
<br>
<input type = "text" name = "first_name" value = "" maxlength = "40" />
<br>
Student Subject: <br>
<input type = "text" name = "last_name" value = "" maxlength = "30" />
<br>
<input type = "submit" value ="Submit" />
</form>
</body>
</html>