Computer Science, asked by harsh797516, 11 months ago

37. Which two tags let you create the
(i) unnumbered lists ? (ii) numbered lists ?​

Answers

Answered by abhijithmr201940
4

<ul>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>

This tag let you make unordered lists.

Use <ul> tag for unordered or unnumbered list

<ol type="1">

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ol>

This will help you make numbered lists.

Use <ol> with type='1' for numbered

Read more on Brainly.in - https://brainly.in/question/10709531#readmore

Similar questions