Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 태그

<시간/>

HTML의 태그는 HTML 페이지 또는 문서의 루트이며 다른 모든 HTML 요소의 컨테이너로 간주됩니다.

이제 태그 −

를 구현하는 예를 살펴보겠습니다.

예시

<!DOCTYPE html>
<html>
<head>
<title>Document Title comes here</title>
</head>
<body>
<h1>
   Heading comes here
</h1>
   Content comes here
</body>
</html>

출력

HTML  html  태그

위의 예에서 처음에는 doctype을 -

로 설정했습니다.
<!DOCTYPE html>

그 후 태그는 −

를 포함하여 그 안에 다른 요소를 설정하는 데 사용됩니다.
<html>
<head>
<title>Document Title comes here</title>
</head>

이제 태그를 사용하여 내용을 설정합니다 -

<body>
<h1>

Heading comes here
</h1>
Content comes here

태그가 닫히고 마지막으로 HTML 문서가 닫는 태그 −

로 끝납니다.
</body>
</html>