Notice
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
관리 메뉴

Jade_o.o

[html] 02 - semantic 태그 사용 본문

HTML

[html] 02 - semantic 태그 사용

by jade 2024. 1. 10. 17:40
semantic 태그를 사용하여 웹의 영역 header, main, sesction, aside, footer에 대해 알아보았다
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>semantic 태그 사용</title>
</head>
<body>
    <header style="height: 50px; background-color: pink;">header</header>
    <main style="height: 1000px; background-color: skyblue; display: flex;">
        <section style="background-color: orange; width: 80%;">
            <article>article</article>
            <article>article</article>
            <article>article</article>
            <article>article</article>
        </section>
        <aside style="background-color: gray; width: 20%;">aside</aside>
    </main>
    <footer style="background-color: lime; height: 100px;">footer</footer>
</html>

 

semantic 태그 사용
header
article
article
article
article
footer

=> html 코드 실행 시 결과창