HTML
<input> tag
Definition tag는 user가 입력할 수 있는 input filed를 명시해줍니다. element는 tag의 element 중에 가장 중요합니다. element는 type attribute에 따라서 다른 형식으로 화면에 보여질수 있습니다. tag 마다 label을 명시할 수 있고, 이에 대한 처리는 tag가 담당한다. 아래와 같은 type들이 존재합니다. (default value) Attributes Attribute Value Description autofocus autofocus Specifies that an element should automatically get focus when the page loads placeholder text Specifies a short hint t..
<fieldset> tag
Definition tag는 하나의 tag 안에 있는 element들을 grouping하는데 사용됩니다. tag는 연관된 element들 주위에 하나의 box를 그립니다. tag는 element의 caption(이름표)을 정의하는데 이용됩니다. Example Code Example legend 1 legend 2 Result Reference https://www.w3schools.com/tags/tag_fieldset.asp
<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되어지는..