126k views
3 votes
Which tag will you use to explain a set of terms in an HTML document?

You will use the (, ,
  1. ) tag to create a (Ordered list, definition list, unordered list) that explains a set of terms.


  2. FILL IN THE BLANK ^^^^


User Dimbslmh
by
7.2k points

2 Answers

7 votes

To explain a set of terms, you will use the dl tag to create a definition list list.

I hope this helps! :)

User Jesus Castello
by
7.4k points
7 votes

Answer:

Step-by-step explanation:

If we want to use an unordered list, we must use the tag <ul> and <li> for example:

Even we can choose the form of the list with Type

<ul>

<li type="circle">first</li>

<li type="square">second</li>

<li type="disc">third</li>

</ul>

Result

◦ first

⌑ second

• third

In addition, we can use the ordered list with numbers for example

we can assign a number with value

<ol>

<li value="20">first</li>

<li>second</li>

<li>third</li>

</ol>

20 first

21 second

22 third

With the last one we can define terns and definitions

<dl>

<dt>we must put here the terns</dt>

<dd>we must put here the definition</dd>

</dl>

tags to make lists

we can use some tags to make orders or unordered list.

User Patrickzdb
by
7.2k points