Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Elements

0/1

HTML Attributes

0/1

HTML Headings

0/1

HTML Paragraphs

0/1

HTML Styles

0/1

HTML Formatting

0/1

HTML Quotation

0/1

HTML Comments

0/1

HTML Colors

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Block and Inline

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML - The Head Element

0/1

HTML Style Guide

0/1

HTML Entities

0/1

HTML Symbols

0/1
Text lesson

Other Lists

HTML Description Lists

A description list consists of terms accompanied by a description for each term.

The <dl> tag is used to specify the description list, the <dt> tag identifies the term (name), and the <dd> tag provides the description for each term.

Example

<dl>
  <dt>Coffee</dt>
  <dd>– black hot drink</dd>
  <dt>Milk</dt>
  <dd>– white cold drink</dd>
</dl>

Summary of the Chapter

  • Employ the HTML <dl> element to delineate a description list.
  • Utilize the HTML <dt> element to designate the term being described.
  • Utilize the HTML <dd> element to provide the description for the term within the description list.

 

Click to Learn