ホームページ >ウェブフロントエンド >htmlチュートリアル >HTML記述リスト
この記事では、説明リストまたは定義リストと、それが HTML ドキュメントでどのように役立つかについて説明します。では、説明リストを定義するにはどうすればよいでしょうか?簡単に言うと、定義のリスト(たとえば、インターネット/Web ページ上の情報を提示するための用語集)と言えます。ただし、説明リストの使用頻度はそれほど高くありませんが、何らかの目的があります。一方、この定義リストは Web ページに付加価値を与えます。たとえば、Web ページ上にあるテキストはコンテキストを説明しており、言い換えれば、コンテキストを意味的にマークアップするのに役立ちます。こうすることで、構造化された情報を簡単に抽出することができます。定義リストは、用語、値、および別の用語集を説明するのに最適な用語です。
構文:
<dl> <dt> …… </dt> <dd> ……….. </dd> </dl
説明リストには 3 つの要素があります。
説明リストはリストのタイプの 1 つです。これらは、順序付けされた箇条書きリストの一般的な形式とみなされます。唯一の違いは、箇条書きアイコンがないことです。
注: 定義リストは、例 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>
出力:
ここでは、説明用語を強調するために、色に style 属性が示されています。
例 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 用語集では、意味のある情報をどのようにマークアップして Web ページ上でさまざまな方法で使用できるかを示しています。これらには、一部の Web サイトがセマンティックを使用してデータに美しさを表現し、与えられた情報を非常にシンプルかつ柔軟に再利用できる将来の機能が備わっています。
以上がHTML記述リストの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。