기본적인 폼 양식

<h1>기본적인 폼 양식</h1>
<p>알맞는 태그를 쓰는 것이 중요</p>
<p>바른 태그 사용은 알맞은 오류 메시지 노출을 가능하게 하고, 웹 접근성과 사이트 구조의 의미성을 향상시켜줌</p>

<form>
  <input type="email" placeholder="이메일을 입력하세요"/>
  <input type="password" placeholder="비밀번호를 입력하세요"/>
  <button type="submit">로그인</button>
</form>

Last updated