목차
- 소개
- 양식 구성요소
- HTML로 접근 가능한 양식
- 결론
소개
양식은 웹사이트 구축에 있어 필수적인 부분입니다. 이는 사용자가 세부 정보를 제출할 때 사용자로부터 데이터를 수집하는 데 사용됩니다. 양식은 사용자가 가입 양식을 제출하고, 양식에 로그인하고, 뉴스레터를 구독하고, 피드백을 받기 위해 메시지를 보내는 상호 작용에 중요합니다. 모든 사람, 특히 스크린 리더가 문제 없이 양식을 작성하려면 액세스 가능한 양식을 만드는 것이 중요합니다.
양식의 구성 요소
양식은
과 같은 다양한 구성요소로 구성됩니다.
-
form: 입력 태그, 제출 버튼, 텍스트 영역, 체크박스, 라디오 버튼과 같은 다른 모든 양식 요소를 수용하는 컨테이너입니다.
-
input: 사용자 세부정보를 받아들이는 HTML 요소입니다. 입력 태그는 입력 목적에 따라 제공됩니다. 문자, 번호, 비밀번호, 이메일 등
<form>
<input type="text" />
<input type="email" />
<input type="password" />
<input type="radio" />
<input type="checkbox" />
<input type="file" />
<input type="range" />
<input type="color" />
<input type="date"/>
</form>
로그인 후 복사
-
레이블: 입력 사항을 채울 세부 사항의 개요를 제공하는 태그입니다. 입력 태그와 연결됩니다.
<form>
<label for="email">Email</label>
<input type="email">
로그인 후 복사
-
textarea: this is an multi-line input tag that accept 524,288 characters by default except the maxlength attribute is set up to a value. It is used to accept reviews, messages and comments from the users
<form>
<label for="message">Message:</label>
<textarea>
로그인 후 복사
-
select: this element is for creating a dropdown in which the users are able to select one option by default or more options when the attribute multiple is being used.
-
checkbox: this element allow users to select one or more options.
<form>
<label for="subscribe"></label>
<input type="checkbox">
로그인 후 복사
-
button: this tag will the users the opportunity to submit their details upon completion. These details are submitted to server.
<form>
<button type="submit">Submit</button>
</form>
로그인 후 복사
HTML로 접근 가능한 양식