■ 요약
▶ HTML <dl> 요소는 설명 목록을 정의한다.
▶ HTML <dt> 요소는 설명 용어를 정의한다.
▶ HTML <dd> 요소는 설명 용어의 설명을 정의한다.
▶ HTML은 설명 목록도 지원한다.
■ HTML 설명 목록
▶ 설명 목록은 용어에 대한 설명이 포함된 설명 목록이다.
▶ <dl> 태그는 설명 목록을 정의한다.
▶ <dt> 태그는 용어를 정의한다.
▶ <dd> 태그는 각 용어를 설명한다.
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
설명 : https://www.w3schools.com/html/tryit.asp?filename=tryhtml_lists_description
출처 : https://www.w3schools.com/html/html_lists_other.asp
HTML Other Lists
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
'HTML' 카테고리의 다른 글
HTML / (34) Class 속성 (0) | 2023.02.22 |
---|---|
HTML / (33) Block 과 Inlin 요소 (0) | 2023.02.22 |
HTML / (31) 정렬된 목록 (0) | 2023.02.22 |
HTML / (30) 정렬되지 않은 목록 (0) | 2023.02.22 |
HTML / (29) 리스트 (0) | 2023.02.21 |