"> "> ">

<button type="button">

→ 버튼 타입이 되면 더 이상 서버로 작동 x

<button type="submit">→ 기본 타입

스크린샷 2025-09-02 오전 10.46.57.png

<label for="">이름: </label><input type="text" name="name">

→ label은 input태그에 대한 설명

focus event

스크린샷 2025-09-02 오전 10.51.48.png

<label for="name1">이름: </label><input id="name1" type="text" name="name">

→ input말고 label을 눌러도 포커스 이벤트가 잡히게 할 수 있다.

blur event

스크린샷 2025-09-02 오전 11.07.32.png

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

스크린샷 2025-09-02 오전 11.07.56.png

			  <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>

스크린샷 2025-09-02 오전 11.14.35.png