본문 바로가기
HTML

<textarea></textarea>

by 원더링 2021. 12. 24.

Textarea

 

 

 

여러줄의 텍스트를 담을수 있는 필드를 생성하는 태그이다.

 

<!-- cols, rows옵션을 사용하여 최대 글자수, 줄수를 설정할 수 있다. -->
<label for="myself"> 자기소개 </label>
<textarea id="myself" placeholder="작성해주세요" cols="30" rows="10"></textarea>

'HTML' 카테고리의 다른 글

<table></table>  (0) 2021.12.26
<button type=""></button>  (0) 2021.12.24
<select name=""></select>, <option value=""><option/>  (0) 2021.12.24
<input type="'Radio"/>, <input type="'Checkbox"/>  (0) 2021.12.24
<label></label>  (0) 2021.12.22