Basic HTML Reference

Parent Previous Next



Italicize text:


html code:


<em>Some text</em>



Result:


Some text


Bolding text:


html code:


<strong>Some text</strong>



Result:


Some Text

Bold & Italicize text:


html code:


<strong><em>Some text</em></strong>


or


<em><strong>Some text</strong></em>


WRONG SYNTAX:   <em><strong>Some text</em></strong>


Result:


Some text




Creating a list of items:


html code:


<ul>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>


*space does not matter, the following is also acceptable:

<ul><li>Coffee</li><li>Tea</li><li>Milk</li></ul>


Result:




Created with the Personal Edition of HelpNDoc: Easily create EPub books