<dl> 요소는 이름–값 쌍을 표현하는 HTML 요소입니다.
<dl> 요소는 HTML에서 이름–값 쌍 목록을 표현하는 데 적합하며, UI 패턴으로 편의시설이나 청구 항목, 기술 용어집 등을 사용할 수 있습니다. 이 요소는 <dt>로 이름을, <dd>로 값 항목을 정의하여 설명 목록을 구성합니다. 웹 애플리케이션에서 정보의 구조화된 표시를 위해 활용됩니다.
<dl> element semantically represents a list of name-value pairs in HTML.
The <dl> element is used in HTML to semantically represent a list of name-value pairs, making it suitable for UI patterns like amenities, billing items, or technical glossaries. The element uses <dt> for the name and <dd> for the value, forming a structured explanation list. It's used to present information in a structured way in web applications.