HTML 06 <h1>~<h6> 태그로 다양한 크기의 제목 나타내기

프론트엔드/HTML|2021. 3. 18. 14:02

 

글자 제목(h1)

글자 제목(h2)

글자 제목(h3)

글자 제목(h4)

글자 제목(h5)
글자 제목(h6)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>제목 연습(h1~h6)</title>
</head>
<body>
  <h1>글자 제목(h1)</h1>
  <h2>글자 제목(h2)</h2>
  <h3>글자 제목(h3)</h3>
  <h4>글자 제목(h4)</h4>
  <h5>글자 제목(h5)</h5>
  <h6>글자 제목(h6)</h6>
</body>
</html>

댓글()
구독