Continuing with HTML, here is a list of some of the tags you will be using to format the appearance of text.
Heading tags, each defines a different size:
<h1>, <h2>, <h3>, <h4>, <h5>, <h6>
Paragraph tags, to keep your text in paragraph form:
<p></p>
The font tag, for defining the properties of the displayed text:
<font></font>
The subscript tag:
<sub></sub>
The superscript tag:
<sup></sup>
Bold text:
<b></b>
Italic text:
<i></i>
Underlined text:
<u></u>
The tags to create a list of items are:
Unordered list :< ul></ul> List items will be displayed by bullets.
Ordered list: <ol></ol> List items will be numbered.
Each list item will be defined by the <li></li> tags.
To mark a citation :
<cite></cite>
To emphasize text use the strong tag.
<strong></strong>
To set the texts to a small size use the small tag and vice versa for bigger text.
<small></small>, <big></big>
To insert a carriage return or line break use the break tag.
</br>
There are more tags to be explored , this is just a partial list of all the text formatting tags out there.