<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
- 자료의 구조를 표현하기 위한 언어, 자료, Document
- 세상에 존재하는 모든 웹 페이지는 HTML로 작성
<head>
<!--
사이트 생성에 필요한 인코딩형식, 사이트제목, 필요한 CSS/JS,
검색최적화를 위한 메타테그
-->
</head>
<body>
<!-- 실제로 보이는 글, 그림 등 컨텐츠 영역 -->
</body>
더보기
더보기
What is HTML?
HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.
'Frontend 👩🏻💻 > HTML&CSS' 카테고리의 다른 글
[CSS] #1-2 박스모델과 box-sizing (0) | 2021.10.13 |
---|---|
[CSS] #1 The box model (0) | 2021.10.09 |
[Sass] Architect : the 7 - 1 pattern (0) | 2018.07.20 |
[css] the problem of setting the font-size to pixels of body element (0) | 2018.07.15 |
[css] Inheritance In CSS (0) | 2018.07.13 |