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

HTML
태그

<시간/>

HTML의


태그는 HTML 문서의 내용을 구분하는 줄을 추가합니다. 주제별 구분은 HTML5의
태그로 정의됩니다. 종료 태그가 없습니다.

이제


태그 −

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

예시

<!DOCTYPE html>
<html>
<head>
<title>Document Title</title>
</head>
<body>
   <h1>Products</h1>
   <p>Here are the products −</p>
   <h2>Clothing</h2>
   <p>Clothing includes T-Shirts, Shirts, Jeans, Trousers and Hoodie.</p>
   <hr>
   <h2>Electronics</h2>
   <p>Electronics includes Mobile, Mobile Accessories,Laptops, Desktop systems, etc.</p>
</body>
</html>

출력

HTML  hr  태그

위의 예에서 우리는 먼저 섹션을 설정했습니다 -

<h2>Clothing</h2><p></p>
<p>Clothing includes T-Shirts, Shirts, Jeans, Trousers and Hoodie.</p>

그 후


태그를 사용하여 위의 내용을 아래의 내용과 구분합니다 -

<hr>
<h2>Electronics</h2>
<p>Electronics includes Mobile, Mobile Accessories,Laptops, Desktop systems, etc.</p>