(1) select

사는 지역 : <select>
							<option>부산</option>
							<option selected>서울</option> <!--default 설정-->
							<option>제주</option>
							<option>광주</option>
						<select>

(2) Text Area

자기소개 : <textarea> </textarea>

자기소개 : <textarea cols = "30" rows = "5"> </textarea>

자기소개 : <textarea cols = "30" rows = "5" placeholder = "20자만 입력해주시기 바랍니다"> </textarea>

(3) Button : <input type = "button">보다 자유로움


<!--위 아래 같은 기능인데 value는 optional-->
<button type = "submit"> 전송 </button>
<input type = "submit" value = "전송">

<!--위 아래 같은 기능인데 value는 optional-->
<button type = "reset"> 취소 </button>
<input type = "reset" value = "취소"> 

(4) Label요소

<!--아이디를 클릭하면 반응해서 클릭이 됨-->

<label for ="user name"> 아이디 : </label>
<input type = "text" id = "user name">