HTML – 16. method
* 이 블로그 방법 강의를 참조하십시오. <!DOCTYPE html> <html lang=”ko”> <head> <meta name=”viewport” content=”widht=device-width, initial-scale=1.0″> <meta charset=”utf-8″> <title>16. HTML</title> </head> <body> <h1>form: Methode</h1> <form action=”서버주소” method=”post”> <p>아이디: <input type=”text” name=”id” value=”아이디를 입력해주세요.”></p> <p>비밀번호: <input type=”password” name=”pw” value=”비밀번호”></p> <input type=”submit”> </form> </body> </html> * 새로 배운 태그 메소드 태그는 서버로 데이터를 보낼 때 사용자가 작성한 데이터 … Read more