Computer >> Máy Tính >  >> Lập trình >> HTML

Thẻ HTML

Phần tử dl trong HTML được sử dụng để xác định danh sách mô tả. Trong HTML5,

được sử dụng để xác định danh sách mô tả, trong khi
trong danh sách định nghĩa được xác định bằng HTML4.

Bây giờ chúng ta hãy xem một ví dụ để triển khai thẻ

-

Ví dụ

<!DOCTYPE html>
<html>
<body>
<h2>Sports</h2>
<dl>
   <dt>Football</dt>
      <dd>It is played by 250 million players in over 200 countries.</dd>
   <dt>Cricket</dt>
      <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd>
   <dt>Hockey</dt>
      <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd>
   <dt>Golf</dt>
      <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd>
</dl>
</body>
</html>

Đầu ra

Thẻ HTML  dl

Trong ví dụ trên, chúng tôi đã đặt

để đặt danh sách mô tả -

<dl>
   <dt>Football</dt>
      <dd>It is played by 250 million players in over 200 countries.</dd>
   <dt>Cricket</dt>
      <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd>
   <dt>Hockey</dt>
      <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd>
   <dt>Golf</dt>
      <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd>
</dl>

Phần tử

ở trên xác định một thuật ngữ trong danh sách định nghĩa, trong khi
cũng xác định một thuật ngữ, nhưng bạn có thể thêm liên kết, hình ảnh, ngắt dòng bên trong
.