Input Type Text , Input Type Password 정보
HTML Input Type Text , Input Type Password본문
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>
추천
0
0
댓글 0개