반응형
<input type="text" />
<input type="text" placeholder="아이디를 입력하세요" />
<input type="text" placeholder="아이디를 입력하세요" minlength="5" />
<input type="text" placeholder="아이디를 입력하세요" maxlength="10" />
<input type="text" placeholder="아이디를 입력하세요" minlength="5" maxlength="10" required />
<input type="text" placeholder="아이디를 입력하세요" minlength="5" maxlength="10" disabled />
<input type="text" value="아이디를 입력하세요" />
<input type="email" placeholder="이메일을 입력하세요" />
<input type="password" placeholder="비밀번호를 입력하세요" />
<input type="url" placeholder="주소를 입력하세요" />
<input type="number" placeholder="번호를 입력하세요" />
minlength,maxlength는 내가 입력할 수 있는 자체 개수를 정한다면 min,max는 입력할 수 있는 최솟값을 입력할 수 있습니다
minlength,maxlength는 텍스트 개수라면 min,max는 숫자 값을 의미합니다
<input type="number" min="5" placeholder="번호를 입력하세요" />
<input type="number" max="100" placeholder="번호를 입력하세요" />
<input type="file" placeholder="파일을 삽입하세요" />
<input type="file" accept=".png, .jpg" placeholder="파일을 삽입하세요" />
혹은 파일 형식이 .png 나 .jpg만 삽입 가능했으면 좋겠다라고 한다면
accept=".png, .jpg"를 사용합니다
임시로 만든 word 파일은 비활성화 되어있습니다
여기까지입니다 폼과 알려드린 속성,타입을 활용하여 회원가입 폼을 만들어보세요 많은 도움이 됩니다
'MARK UP > HTML' 카테고리의 다른 글
Form - select & option (#17) (0) | 2020.11.18 |
---|---|
Form - Lavel (#16) (0) | 2020.11.18 |
Form - input (#14) (0) | 2020.11.13 |
Form - 1 (#13) (0) | 2020.11.13 |
미디어 파일 Midia import(#12) (0) | 2020.11.12 |