Computer Science, asked by mathewjustin4705, 2 months ago

observe the following table and write the html code to generate it-
html list
ordered list unordered list definition list

Answers

Answered by SrKaran
0

Code :

<!DOCTYPE html>

<h1> Ordered And Unordered in HTML </h1>

<body>

 <ol type="a">

  <li>First</li>

  <li>Second</li>

</ol>

</body>

<body>

  <ul>

      <li>First</li>

  </ul>

</body>

</html>

Definition :-

1. Ordered list = a list of related items, in no particular order.

2. Unordered list = a list of related items, in a specific order

I Hope You Got it.

Thank You.

Similar questions