Computer Science, asked by jojojoodee, 9 months ago

What is a description list ? Which two tags are used to create a description list? (Name and expand the tag )

Answers

Answered by rohin777
8

Answer:

Description list is a list of terms(Items), with a description or definition of each term(item). In simple words it is list of definitions.

3 tags are used in Description list

1. <dl> defines start of description list

2.<dt> define the term(item) or say heading name

3.<dd> it describes the definition

Syntax with example:

<dl>

<dt>Computer</dt>

<dd>It is an electronic device for data processing</dd>

<dt>Calculator</dt>

<dd>it is a hand held calculation device</dd>

</dl>

It will look like this on web page.

Computer

It is an electronic device for data processing

Calculator

It is a hand held calculation device

Similar questions