HTML & CSS/Reference

[HTML] HTML5 문서의 기본 구조

MoongStory 2024. 12. 8. 14:34
반응형
<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>타이틀</title>
  </head>
  <body>
    <header></header>
    <section>
      <article></article>
    </section>
    <footer></footer>
  </body>
</html>
반응형