Respuesta :

Answer:

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.

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

I hope this helps! :)