Huwebes, Agosto 18, 2011

Different Kinds of Lists :D

Unordered list creates a list, which is indented, and each item has a bullet.
TYPE="disc" displays list items in bulletes:
Example:
<ul type="disc">
      <li>love</li>
</ul>
= love
TYPE="circle" displays list items in circles:
Example:
<ul type="circle">
      <li>love</li>
</ul>
= love
TYPE="square" displays list items in squares:
Example:
<ul type="square">
     <li>love</li>
</ul>
= love


Ordered list creates a list, which is indented, numbering the list items, starting at one.
TYPE="1" displays list items in numerals:
Example:
<ol type="1">
      <li>love</li>
</li>
= 1. love
TYPE="a" displays list items in lowercase letters:
Example:
<ol type="a">
       <li>love</li>
</ol>
= a. love

TYPE="I" displays list items in uppercase numerals:
Example:
<ol type="I">
       <li>love</li>
</ol>
= I. love


*Some lists that I have learned in our Computer Subject. ;)


Strong, Emphasized, Abbreviation, & Blockquote

To make the word Strong, which will make the text in boldface:
• <strong>Saint John Academy</strong>
= Saint John Academy


To make the word Emphasized, which will make the text Italic:
• <em>Saint John Academy</em>
= Saint John Academy


To make the word Abbreviated, which will give the abbreviation of a word:
• <abbr title="Saint John Academy">SJA</abbr>


To make a paragraph in Blockquote, which will inserts margins in the paragraph.


*Some tags that I have learned and that are used to make the text and paragraph more clear and visible. :)