form

    <form> tag

    Definition tag는 user input을 위한 HTML form을 만드는데 사용됩니다. 쉽게 말해, backend에서 구현된 기능을 수행하기 위한 input을 frontend에서 user로부터 입력받는 역할을 합니다. ~ tag 사이에 아래 명시된 element를 한개 이상 포함할 수 있습니다. Attributes Attribute Value Description method get post form data를 전송할때 사용되는 HTTP method를 명시 name text form의 name을 명시 action URL form이 submit될 때, form data가 보내질 곳을 명시 target _blank _self _parent _top form을 submit한 후에 receive되어지는..