input은 self closing tag이다.
1. text
2. password
3. checkbox
4. radio
(+) textarea
<input type="text">
<input type="password">
<input type="checkbox" checked>
<input type="radio" name="drink" value="coffee">커피
<input type="radio" name="drink" value="beer">맥주
button type의 디폴트값은 button이 아닌 submit이다.
!type이 submit이면 새로고침됨!
일반 버튼의 의미로 사용할 경우 button임을 명시하자.
속성값 | 설명 |
button | 해당 버튼이 클릭할 수 있는 버튼(clickable button)임을 명시함. |
submit | 해당 버튼이 폼 데이터(form data)를 제출하는 제출 버튼(submit button)임을 명시함. |
reset | 해당 버튼이 폼 데이터를 초기값으로 리셋하는 리셋 버튼(reset button)임을 명시함. |
<button type="submit">제출</button>
<button type="button">버튼</button>
<button type="reset">초기화</button>
semantic : 의미가 있는, 의미론적인
section vs article
article 독립적 = 재사용 = 더 구체적
고유한 것 vs 반복되는 영역