Tuesday, November 17, 2009

HTML Snippet: Lists

Consider the following Unordered List of BRIC Nations:

  • Brazil
  • Russia
  • India
  • China

In HTML, this is written as:
<UL>
<LI>Brazil
<LI>Russia
<LI>India
<LI>China
</UL>


For numbered-lists or ordered-lists just replace <UL>, </UL> tags with <OL>, </OL> respectively

Reference Links:
Lists in HTML

No comments:

Post a Comment