Computer Science, asked by mraj73775, 5 months ago

An _____ is represented by the <UL> and </UL> tags​

Answers

Answered by aryansrivastava25
1

Answer:

unordered list is represented by UL tag

Answered by PirAhmedShah
0

Answer:

Unordered List

Explanation:

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

The list items will be marked with bullets (small black circles) by default:

-------------

Example

-------------

<html>

<body>

<ul>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>    

</body>

</html>

------------

Result

-----------

  • Coffee
  • Tea
  • Milk
Similar questions