Welcome To My

Welcome To My

Know What Is Unordered List And What It’s Use While Making HTML Table.


                          <UL> UNORDERED LIST                     

An unordered list is used when the items are not to be displayed in any particular sequence. The default bullet type for most web browsers is disc (small filled black circles), before the list of items. The list begins and ends with <UL> and </UL> tags respectively.

<LI> LIST ITEM


We can display the listed items in an Ordered and Unordered list by using the <LI> tag. The <LI> tag is an empty element that does not require a closing tag. For example:

  • To make an Unordered list, type <UL> before the list.
  • Write the <LI> (List items) tag before every individual item.
  • At the end of the entire list, type </UL>




Let’s look at the given HTML code

<HTML>
<HEAD>
<TITLE>INSERTING LIST</TITLE>
</HEAD>
<BODY BGCOLOR=”Green” LEFTMARGIN= 100, TOPMARGIN=25
<B><Font Size=”6” Color=”Yellow”> 5 Ds For Success
</Font></B>
<Font Size=”6” Color= White><UL>      
<LI>Dedication
<LI>Devotion
<LI>Discipline                                                    
<LI>Discrimination
<LI>Determination
</UL></Font>                                                           
</BODY>
</HTML>




0 comments:

Post a Comment