Friday, 1 November 2019

HTML Lists

HTML lists are defined with <ul> 
(unordered/bullet list) or <ol>
 (ordered/numbered list) tags, followed by <li>
 tags (list items):

Example

<ul>

 <li>

Coffee

</li>

<li>

Tea

</li>

  <li>

Milk

</li>

</ul>



No comments:

Post a Comment