>웹 프론트엔드 >CSS 튜토리얼 >HTML 및 CSS를 사용하여 접근성 있는 양식을 디자인하는 방법

HTML 및 CSS를 사용하여 접근성 있는 양식을 디자인하는 방법

DDD
DDD원래의
2025-01-06 18:35:411013검색

How to Design Accessible Forms with HTML and CSS

목차

  1. 소개
  2. 양식 구성요소
  3. HTML로 접근 가능한 양식
  4. 결론

소개

양식은 웹사이트 구축에 있어 필수적인 부분입니다. 이는 사용자가 세부 정보를 제출할 때 사용자로부터 데이터를 수집하는 데 사용됩니다. 양식은 사용자가 가입 양식을 제출하고, 양식에 로그인하고, 뉴스레터를 구독하고, 피드백을 받기 위해 메시지를 보내는 상호 작용에 중요합니다. 모든 사람, 특히 스크린 리더가 문제 없이 양식을 작성하려면 액세스 가능한 양식을 만드는 것이 중요합니다.


양식의 구성 요소

양식은

과 같은 다양한 구성요소로 구성됩니다.
  • form: 입력 태그, 제출 버튼, 텍스트 영역, 체크박스, 라디오 버튼과 같은 다른 모든 양식 요소를 수용하는 컨테이너입니다.
<form></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.
<form>
<select>



  • 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로 접근 가능한 양식

  • 의미 태그 포함

,,
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.