IT/html

html Input Type Text , Input Type Password

조원태 2017. 1. 6. 23:55
반응형

Input Type Text

<input type = "text">는 한 행의 텍스트 입력 필드를 정의합니다.

 

<form>

  이름 : <br>

  <input type = "text"name = "firstname"> <br>

  성 : <br>

  <input type = "text"name = "lastname">

</ form>

 

 

 

Input Type Password

<input type = "password">는 암호 필드를 정의합니다.

 

<form>

  사용자 이름 : <br>

  <input type = "text"name = "username"> <br>

  사용자 비밀번호 : <br>

  <input type = "password"name = "psw">

</ form>

 

2017/01/05 - [IT/html] - HTML5 form 요소 datalist keygen output

2017/01/05 - [IT/html] - html textarea button 요소

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

2017/01/03 - [IT/html] - html form action

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


반응형

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

Input Type Radio Input Type Checkbox Input Type Button  (0) 2017.01.07
HTML Input Type Submit , Input Type Reset  (0) 2017.01.06
HTML5 form 요소 datalist keygen output  (0) 2017.01.05
html textarea button 요소  (0) 2017.01.05
html input select 요소  (0) 2017.01.05