코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML form tag - method attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="post"> 이름 : <input type="text" name="st_name"><br> 학번 : <input type="text" name="st_id"><br> 학과 : <input type="text" name="department"><br> <input type="submit"> </form> </body> </html>