An HTML element is defined by a start tag, some content, and an end tag.
The HTML element is everything from the start tag to the end tag:
이것은 요소가 다른 요소를 포함할 수 있다는 것을 의미한다. 모든 HTML 문서는 중첩된 HTML 요소로 구성됩니다. 아래 예시는 <html>
,<body>
,<h1>
,<p>
4가지 요소들이 포함되어있다.
<!DOCTYPE html>
<html> # root element , 전체 문서를 정의함
<body> # 문서 내용
<h1>My First Heading</h1> # 헤드(heading)
<p>My first paragraph.</p> # 구문(paragraph)
</body>
</html>
end tag 만 잊지 않는 다면, HTML은 올바르게 나타날 것이다.
내용이 없는 HTML 요소들을 empty elements라고 부른다.
<br>
: line break, no closing tag
<!DOCTYPE html>
<html>
<body>
<p>This is a <br> paragraph with a line break.</p>
</body>
</html>
<P>
means the same as <p>
.
HTML 표준은 소문자 태그를 요구하진 않지만, W3C는 HTML에서 소문자를 권장하고 XHTML과 같은 보다 엄격한 문서 유형에 대한 소문자를 요구합니다.
결론 : 그냥 소문자 써라.