(1) text

<input type ="text" place holder = "영문으로만 써주세요">

(2) password

<input type = "password"> <br> <!--**처리 돼서 끔-->

(3) Radio

<input type = "radio">
<input type = "radio" name = "ab">
<!--name을 해줘야 같은 부류의 라이도임을 명시해주어야 함-->

<input type = "radio">
<input type = "radio" name = "ab">

(4) checkbox

취미 : 도서 <input type = "checkbox" name = "hb" checked>
			게임 <input type = "checkbox" name = "hb">
			등산 <input type = "checkbox" name = "hb">