You currently have JavaScript disabled on your browser.

This website uses JavaScript, and This page needs JavaScript activated to work correctly.

Please active JavaScript on your browser and then refresh this page.

adThumb

Number Search Volume 3

$8.24      buyNow
Over 150 fun family friendly challenging number search puzzles (with answer sheets). This volume focuses on random number words between 30000 thru 39999. Minimum of 40 number words per puzzle. Each puzzle is on its own page, which not only reduces crowding but also allows for larger word print sizes for easier reading. Answer sheets for each puzzle are provided in the back of the book. Fun for yourself and for the entire family. This makes for a great gift idea as well.

Lists




In this blog post I am referring to the standard List type elements that are available with HTML.

There are three main types of lists readily available in HTML: Unordered, Ordered, and Description.



Unordered Lists

Unordered lists are used to display a group of items in a Bullet style (small black circles).

To make an Unordered List, use the <ul> element tag, and then add each list item using the <li> tag:

 
<ul>
    <li>First Item</li>
    <li>Second Item</li>
    <li>Third Item</li>
</ul>

Example output of the above Unordered List code:


It is also possible to display a list of items without displaying the Bullets. To accomplish this we just need to set some Style attributes to the list element tag. Set the list-style-type attribute value to none to remove the bullets. You can also set the margin and padding attribute values to zero to remove the list items indentions altogether, or set a different value to adjust how much the list items are indented by.

For example:

 
<ul style="list-style-type:none;margin:0;padding:0;">
    <li>First Item</li>
    <li>Second Item</li>
    <li>Third Item</li>
</ul>

Example output of the above modified Unordered List code:


Note: This style trick can be applied to both Unordered and Ordered lists.


Ordered Lists

Ordered lists are used to display a group of items in a Numbered style (1, 2, 3, etc...).

To make an Ordered List, use the <ol> element tag, and then add each list item using the <li> tag:

 
<ol>
    <li>First Item</li>
    <li>Second Item</li>
    <li>Third Item</li>
</ol>

Example output of the above Ordered List code:

  1. First Item
  2. Second Item
  3. Third Item


Description Lists

Description lists are used to display a group of items, with item descriptions for each item.

To make a Description List, use the <dl> element tag, and then use the <dt> tag to note the item title followed by the <dd> tag to specify that items description:

 
<dl>
    <dt>First Item</dt>
    <dd>-  This is the description for First Item</dd>
    <dt>Second Item</dt>
    <dd>-  This is the description for Second Item</dd>
    <dt>Third Item</dt>
    <dd>-  This is the description for Third Item</dd>
</dl>

Example output of the above Description List code:

First Item
- This is the description for First Item
Second Item
- This is the description for Second Item
Third Item
- This is the description for Third Item


Tips and Tricks

Lists elements can contain other HTML elements as well, not just text. For example, you could easily add images, paragraphs, tooltips, line breaks, etc... to each list item.

To separate the list items to be more apart from each other, you can either use Style methods to add Margin or Padding values to them, or you can add a <br/> line break at the end of each list item. For Example:

 
<ul>
    <li>First Item</li><br/>
    <li>Second Item</li><br/>
    <li>Third Item</li><br/>
</ul>

Example output:



Final Thoughts

Thank you for reading, I hope you found this blog post (tutorial) educational and helpful.

 
(0)   (0)

grayStargrayStargrayStargrayStargrayStar  Be the first to rate this post

User Comments






TJDivisions© 2023