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