코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - max attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="get"> 이름 : <input type="text" name="st_name"><br> 생년월일 : <input type="date" name="bday" min="1900-01-01" max="2019-01-01"><br> 학년 : <input type="number" name="grader" min="1" max="4" ><br> <input type="submit"> </form> </body> </html>