Skip to content

Instantly share code, notes, and snippets.

@hertz315
Created January 21, 2023 10:46
Show Gist options
  • Save hertz315/84b9641e48cb0f2c9dcf22cf862ac72f to your computer and use it in GitHub Desktop.
Save hertz315/84b9641e48cb0f2c9dcf22cf862ac72f to your computer and use it in GitHub Desktop.
HTML 구조

HTML 구조

<!-- 문서의 버전을 지정 -->
<!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>Document</title>
</head>

<!-- 문서의 구조를 나타내는 범위 -->
<body>

</body>

</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment