이 문서에서는 설명 목록 또는 정의 목록이 HTML 문서에서 어떻게 유용한지 설명합니다. 그렇다면 설명 목록을 정의하는 방법은 무엇입니까? 간단히 말해서 정의 목록이라고 말할 수 있습니다(예: 인터넷/웹 페이지에 정보를 표시하는 용어집). 그러나 설명 목록의 사용량은 적지만 몇 가지 목적이 있습니다. 한편, 이 정의 목록은 웹 페이지에 부가적인 가치를 제공합니다. 예를 들어, 웹 페이지에 제공된 텍스트는 컨텍스트를 설명합니다. 즉, 컨텍스트를 의미론적으로 표시함으로써 도움을 줍니다. 이렇게 하면 구조화된 정보를 쉽게 추출할 수 있습니다. 정의 목록은 용어, 값 및 다른 용어집을 설명하는 완벽한 용어입니다.
구문:
<dl> <dt> …… </dt> <dd> ……….. </dd> </dl
설명 목록에는
설명 목록은 목록 유형 중 하나입니다. 순서가 지정된 글머리 기호 목록의 일반적인 형태로 간주됩니다. 유일한 차이점은 글머리 기호 아이콘이 없다는 것입니다.
참고: 모든 정의 목록은예시 #1
<!DOCTYPE html> <html> <body> <dl> <dt><b>Web Designing company in Chennai<b></dt> <dd>This service Enhance Website Exposure with professional User Interface </dd> </dl> </body> </html>
출력:
예시 #2
<html> <head> <title>Page Title</title> <style> body { background-color: pink; text-align: center; color: blue; font-family: Arial, italic; } </style> </head> <body> <h1>HTML Demo 2</h1> <p>This is Networking Protocol Abbreviation.</p> <dl> <dt>FTP <dd>File Transfer Protocol <dt>TCP/IP <dd>Transmission Control Protocol/IP address <dt>SNMP <dd>Simple Network Management Protocol </dl> </body> </html>
출력:
예#1
<!DOCTYPE html> <html> <body> <dl> <dt> Ebay</dt> <dt>Etsy</dt> <dt>Walmart</dt> <dd>The Top 10 internet shopping websites in the year 2019</dd> </dl> </body> </html>
출력:
다음으로
예#2
<!DOCTYPE html> <html> <body> <h2>A Description HTML list</h2> <dl lang="es"> <dt>formas</dt> <dt lang="en-us">Shapes</dt> <dt lang="fr">Formes</dt> <dd>A Shape determines the different structure of the objects. </dd> </dl> </body> </html>
출력:
예
<html> <head> <title>DEFINITION LIST</title> </head> <body bgcolor=" brown" text="pink"> <h1><u>DEFINITION LIST DEMO</u></h1> <h3> <dl> <dt lang="es"><u>Compact:</u></dt> <dd>A Compact may refer to make-up case. </dd> <dd>When taken as adjective it refers to smaller part. Example, need a compact sofa to sit.</dd> </dl> <h3> </body> </html>
출력:
예
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.1"> <title>Definition List example</title> </head> <body> <h1>Definition List Demo4</h1> <dl> <dt> Engaged</dt> <dt>Leaves</dt> <dd>Students got engaged during their Lab hours in the college.</dd> <dd>Childrens feels when their father leaves for the work.</dd> </dl> </body> </html>
출력:
설명 용어를 강조하기 위해 색상에 스타일 속성이 표시됩니다.
예시 #1
<html> <head> HTML Definition Lists </head> <body> <h2> list of Popular International Entrance Examination <h2> <dl> <dt style="color:Blue"> TOEFL </dt> <dd> -: Test of English As Foreign Language . This Score is Accepted in the country like Canada,UK,USA</dd> <br> <dt style="color:Magenta"> GRE </dt> <dd> -: The Graduate Record Examination. This Test is allowed to enter in the States like Canada and US foran indian Students in the Science and Technology Fields </dd> </dl> </body> </html>
출력:
태그를 사용하면 근처의 텍스트가 해당 용어의 정의로 할당된 것으로 이해됩니다.
예시 #2
<!DOCTYPE html> <html> <head> <title> Demo</title> <dl> <dt lang="en-GB"><dfn> Definition list</dfn></dt> <dt><dfn><b>Apple fruit </b></dfn></dt> <dd>This fruit is quoted as "miracle food" where this gives best nutrients to the body. They are rich in antioxidents</dd> <dd>A small fragment of apple intakes daily cures cancer,heart disease etc.</dd> <dd> Different varieties includes Braeburn,Cameo,Fuji,Gala </dd> </dl> </html>
출력:
아래 예는 'bgcolor' 속성을 사용하여 배경색이 있는 콘텐츠를 보여줍니다.
예
<html> <head> <title>DEFINITION LIST</title> </head> <body bgcolor="Green" text="pink"> <h1><u>DEFINITION LIST DEMO</u></h1> <h3> <dl> <dt lang="en-GB"><u>PYTHON:</u></dt> <dd>Python is a progranning Language originally developed by Guido van. Its an Open Source and Cross-Platform. Applications include Web development, Data Machine Learning </dd> </dl> <h3> </body> </html> </dl> </html>
출력:
정의 목록에 대한 이 기사 또는 용어집 목록이 정의 목록을 넣을 수 있는 사용 가능한 용도 중 일부를 보여주기 위해 안내되었다고 할 수 있기를 바랍니다. 우리는 이것이 정보 조각 간의 유용한 협력을 개발하는 데 어떻게 사용될 수 있는지에 대한 기본적인 이해를 살펴보았습니다. 예를 들어, Google 용어집은 의미 있는 정보를 마크업하고 웹페이지에서 다양한 방법으로 사용할 수 있는 방법을 제공합니다. 여기에는 일부 웹사이트가 의미 체계를 사용하여 데이터에 아름다움을 부여하고 주어진 정보를 매우 간단하고 유연하게 재사용하는 미래 기능이 있습니다.
위 내용은 HTML 설명 목록의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!