size not allowed on input html

Solutions on MaxInterview for size not allowed on input html by the best coders in the world

showing results for - "size not allowed on input html"
Fabio
26 Nov 2019
1<!DOCTYPE html>
2<html>
3   <head>
4      <title>HTML maxlength attribute</title>
5   </head>
6   <body>
7      <form action = "/cgi-bin/hello_get.cgi" method = "get">
8         Student Name:
9         <br>
10         <input type = "text" name = "first_name" value = "" maxlength = "40" />
11         <br>
12         Student Subject: <br>
13         <input type = "text" name = "last_name" value = "" maxlength = "30" />
14         <br>
15         <input type = "submit" value ="Submit" />
16      </form>
17   </body>
18</html>