코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - size attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="get"> 주소 : <input type="text" name="address" size="40"><br> 우편번호 : <input type="text" name="zipcode" maxlength="5" size="5"><br> <input type="submit"> </form> </body> </html>