textarea 태그



"> textarea tag

textarea 태그



"> textarea tag

textarea 태그



">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>textarea tag</title>
</head>
<body>
<!--
	# textarea 태그
	- 여러 줄의 글자를 입력할 때 사용,
	- <textareas rows="" cols="">
	  * rows : 텍스트 영역의 행(라인)수를 지정.
	  	cols : 텍스트 영역의 폭(가로)를 지정,
-->
	<h2>textarea 태그</h2>
	<br>
	<form action="#">
		<textarea id="memo" name="memo" rows="10" cols="50" placeholder="내용을 작성하세요"  style="resize: none;"]></textarea>
		<a></a>
		<br>
		<input type="submit" value="완료">
	</form>
</body>
</html>