본문 바로가기
IT 정보기술, 전자, 통신/HTML_CSS

[HTML] method 형식으로 폼 만들기

by 팁텍북 2017. 9. 27.

[HTML] method 형식으로 폼 만들기 w3스쿨 예제

w3스쿨 예제

Specify that the form is submitted using the "post" method.


<!DOCTYPE html>

<html>

<body>


<form action="/action_page.php" method="post">

Name: <input type="text" name="name">

<input type="submit">

</form>


</body>

</html>



댓글