개념
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>textarea 예제</h1>
<form>
<textarea rows="10" cols="50" name="memo" placeholder="메모를 작성하세요."></textarea><br>
</form>
</body>
</html>
HTML
복사