뇌운동일지

[HTML5] 시맨틱 태그 본문

HTML

[HTML5] 시맨틱 태그

purpleduck 2020. 4. 16. 10:11

semantic tag / 의미가 통하는

* 태그만 보고도 페이지 구조를 쉽게 파악할 수 있는 태그

 

<html>
<head>
</head> <!--설정영역-->
<body> <!--화면영역-->
<header></header> <!--시맨틱 태그-->
<section>
<article></article>
</section>
<footer></footer>
</body>
</html>

 

section은 여러개의 article로 나누어질 수 있다. 

검색기들이 효율적으로 사이트를 검색한다. 

 

Comments