Skip to content
snowicecat edited this page Feb 27, 2015 · 5 revisions

HTML Formats

###`` 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>
  1. Pizza
  2. Rice

Clone this wiki locally