-
Notifications
You must be signed in to change notification settings - Fork 0
HTML Note2 Format
snowicecat edited this page Feb 27, 2015
·
5 revisions
###``
Bold Words.
e.g <strong>I am bold</strong> I am bold
###<em>
Italic Words.
e.g <em>I am Italic</em>I am Italic
###<u>
Underline Words.
e.g <u>I am underlined</u>I am underlined
###<strike>
Delete the line.
e.g <strike>I am deleted</strike>I am deleted
###Unordered List Make an list without order the items, used to show some data or things need to do.
e.g
<ul>
<li>Pizza</li>
<li>Rice</li>
</ul>
- Pizza
- Rice
###Ordered List Make an list with ordered numbers, used to show some data or things need to do.
e.g
<ol>
<li>Pizza</li>
<li>Rice</li>
</ol>
- Pizza
- Rice