Html lists

HTML lists are used to group together related pieces of information. All lists may contain one or more list elements. There are three different types of HTML lists:

– Unordered List – bulleted List <ul>

– Ordered List – numbered List <ol&gt…


This content originally appeared on DEV Community and was authored by jolamemushaj

HTML lists are used to group together related pieces of information. All lists may contain one or more list elements. There are three different types of HTML lists:

  1. - Unordered List - bulleted List <ul>
  2. - Ordered List - numbered List <ol>
  3. - Description List - definition List <dl>

HTML Unordered Lists - An unordered list is a collection of related items that have no special order. The Unordered list starts with <ul> tag and list items start with the<li> tag. Each item in the list is marked with a bullet.

<ul>  
 <li>Michael</li>  
 <li>Pamela</li>  
 <li>Dwight</li>  
</ul>

HTML Ordered Lists - In the ordered HTML lists, all the list items are marked with numbers by default. It is known as numbered list also. The ordered list starts with <ol> tag. The numbering starts at one and is incremented by one for each list element tagged with <li>.

<ol>  
 <li>Angela</li>  
 <li>Oscar</li>  
 <li>Kevin</li>  
</ol>

The type attribute for <ol> tag is used to specify the type of numbering you want to use:

<ol type = "1"> - Default-Case Numerals.
<ol type = "I"> - Upper-Case Numerals.
<ol type = "i"> - Lower-Case Numerals.
<ol type = "A"> - Upper-Case Letters.
<ol type = "a"> - Lower-Case Letters.

HTML Description Lists - A description list is a list of terms, with a description of each term.

<dl> - defines a description list
<dt> - defines a term in a description list
<dd> - describes the term in a description list

Example:

<dl>
  <dt>Michael</dt>
  <dd>- world's best boss</dd>
  <dt>Pam</dt>
  <dd>- the office receptionist</dd>
</dl>


This content originally appeared on DEV Community and was authored by jolamemushaj


Print Share Comment Cite Upload Translate Updates
APA

jolamemushaj | Sciencx (2022-06-18T11:41:26+00:00) Html lists. Retrieved from https://www.scien.cx/2022/06/18/html-lists/

MLA
" » Html lists." jolamemushaj | Sciencx - Saturday June 18, 2022, https://www.scien.cx/2022/06/18/html-lists/
HARVARD
jolamemushaj | Sciencx Saturday June 18, 2022 » Html lists., viewed ,<https://www.scien.cx/2022/06/18/html-lists/>
VANCOUVER
jolamemushaj | Sciencx - » Html lists. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/06/18/html-lists/
CHICAGO
" » Html lists." jolamemushaj | Sciencx - Accessed . https://www.scien.cx/2022/06/18/html-lists/
IEEE
" » Html lists." jolamemushaj | Sciencx [Online]. Available: https://www.scien.cx/2022/06/18/html-lists/. [Accessed: ]
rf:citation
» Html lists | jolamemushaj | Sciencx | https://www.scien.cx/2022/06/18/html-lists/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.