Reference

Headings

Code:

<h2>This is 2nd level heading</h2>

View:

This is 2nd level heading


Code:

<h3>This is 3rd level heading</h3>

View:

This is 3rd level heading


Code:

<h4>This is 4th level heading</h4>

View:

This is 4th level heading


Paragraph

Code:


<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit,sed diam nonummy nibh euismod tincidunt ut consectetuer adipiscing elit,sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquamerat volutpat.</p> 

View: 


Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diamnonummy nibh euismod tincidunt ut consectetuer adipiscing elit, sed diamnonummy nibh euismod tincidunt ut laoreet dolore magna aliquam eratvolutpat.


Lists

Code:


<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
</ul


View:


  • One
  • Two
  • Three
  • Four

Tables

Code:

<table border="1" cellpadding="0" cellspacing="0" summary="Rules">
    <tr>
        <td>Volume I</td>    
        <td>100 Series</td>
        <td>Rules Applicable to Miscellaneous Employees</td></tr>
    <tr>
        <td>Volume II</td>
        <td>200 Series</td>    
        <td>Rules Applicable to the Uniformed Ranks of the San Francisco Police Department</td></tr>
       <tr>     
        <td>Volume III</td>
        <td>300 Series</td>
        <td>Rules Applicable to the Uniformed Ranks of the San Francisco Fire Department</td></tr>
    <tr>
        <td>Volume IV</td>
        <td>400 Series</td>    
        <td>Rules Applicable to Service-Critical Classes of theMunicipal Transportation Agency (MTA)</td></tr>
</table>


View:


Volume I 100 Series Rules Applicable to Miscellaneous Employees
Volume II 200 Series Rules Applicable to the Uniformed Ranks of the San Francisco Police Department
Volume III 300 Series Rules Applicable to the Uniformed Ranks of the San Francisco Fire Department
Volume IV 400 Series Rules Applicable to Service-Critical Classes of the Municipal Transportation Agency (MTA)