<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>웹 폼을 담는 상자</title> </head> <body> <form method="post" action="server.php"> 아이디 <input type="text" id="id"><br> 비밀번호 <input type="password" id="pw"> <br><input type="button" value="button"> <br><input type="reset" value="reset"> <br><input type="submit" value="submt"> </form> </body> </html>