반응형
! 공식문서를 참고해서 개념을 다시 한번 확인해주세요 !
1. <dl> tag
definition list의 약자로 사전처럼 용어를 설명하는 목록을 만듦
2. <dt> tag
definition term의 약자로 정의되는 용어의 제목을 넣을 때 사용
3. <dd> tag
definition description의 약자로 용어를 설명하는데 사용
4. 사용예시
-코드 작성
<dl>
<dt>Firefox</dt>
<dd>
A free, open source, cross-platform, graphical web browser developed by the
Mozilla Corporation and hundreds of volunteers.
</dd>
<!-- Other terms and descriptions -->
</dl>
-실제 모습
Resources
https://aboooks.tistory.com/211
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
반응형
'Learning Log > HTML&CSS' 카테고리의 다른 글
[css] 배경화면 투명하게 하기 (0) | 2023.02.12 |
---|---|
[html] input과 button tag의 차이점 (0) | 2023.01.06 |
[css] Layout - inline, inline-block, block이란 (0) | 2022.12.16 |
[css] Layout - position 속성이란 (0) | 2022.12.16 |
[html/css] Semantic Web과 Semantic Tags의 차이 (0) | 2022.12.08 |