IT/html

html textarea button 요소

조원태 2017. 1. 5. 18:23
반응형


<textarea> 요소

<textarea> 요소는 여러 줄 입력 필드 (텍스트 영역)를 정의합니다.


<textarea name = "message"rows = "10"cols = "30">

고양이는 정원에서 놀고있었습니다.

</ textarea>


rows 속성은 텍스트 영역에 보이는 행의 수를 지정합니다.


cols 특성은 텍스트 영역의 보이는 너비를 지정합니다.


위의 HTML 코드가 브라우저에 표시되는 방법입니다.



고양이는 정원에서 놀고있었습니다.


 

<button> 요소

<button> 요소는 클릭 가능한 버튼을 정의합니다.


<button type = "button"onclick = "alert ( 'Hello World!')"> 클릭! </ button>


2017/01/05 - [IT/html] - html input select 요소

2017/01/03 - [IT/html] - html name 속성

2017/01/03 - [IT/html] - html method post get


반응형

'IT > html' 카테고리의 다른 글

html Input Type Text , Input Type Password  (0) 2017.01.06
HTML5 form 요소 datalist keygen output  (0) 2017.01.05
html input select 요소  (0) 2017.01.05
html form action  (0) 2017.01.03
html method post get  (0) 2017.01.03