"> "> ">
<button type="button">
→ 버튼 타입이 되면 더 이상 서버로 작동 x
<button type="submit">→ 기본 타입

<label for="">이름: </label><input type="text" name="name">
→ label은 input태그에 대한 설명
focus event

<label for="name1">이름: </label><input id="name1" type="text" name="name">
→ input말고 label을 눌러도 포커스 이벤트가 잡히게 할 수 있다.
blur event

<label>생일: </label><input type="date" name="birthday">

<label>성별: </label>
<input type="radio" name="gender" id="male" value="M">
<label for="male">남자</label>
<input type="radio" name="gender" id="female" value="F">
<label for="male">여자</label>
