Main

서정·2023년 10월 31일
0

김버그 HTML

목록 보기
42/46

Main

  • 본문의 핵심에 해당하는 부분에는 main 태그를 사용한다.
  • sectioning elements가 아니기 때문에 heading tag를 반드시 적을 필요가 없다.
  • 다른 sectioning elements들을 감싸는 용도로 사용한다.
  • 주의사항 : html 문서당 main 태그는 하나만 사용해야 한다.

코드

<main>
    <header>
        <h1>Home</h1>
        <button type="button" aria-label="Timeline options">
            <!---Icon-->
        </button>
        <div>
            <h2>Home shows you top Tweets first</h2>
            <button type="button">
                <!---Icon-->
                <strong>
                    See latest Tweets instead
                </strong>
                <span>
                    You'll be switched back Home after you've been away for a while.
                </span>
            </button>
            <a href="#">
                <!---Icon-->
                View content preferences
            </a>
        </div>
    </header>
</main>
profile
R=VD 프론트엔드 개발자

0개의 댓글