WEB.HTML

chapter02 : h_tag

GAWON 2023. 5. 18. 09:12
<!--
제목 태그 h1 ~ h6

1.숫자가 작아야 크기가 크다.
2.블록 레벨 태그이다.(한 줄 전체를 차지한다.)
3.(h7) 태그 이상은 없다.(사용해도 적용x)
-->

<!-- 블록레벨 h2(제목글)
-->

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h2>This is h2</h2>
<h3>This is h3</h3>
<h4>This is h4</h4>
<h5>This is h5</h5>
<h6>This is h6</h6>

</body>
</html>