With <b> you make the text bold,
with <i> you make it in italics,
with <u> you underline it and
with <tt> you type like a type machine.
With <p> you make a new paragraph.
A paragraph can be centered as well, by adding the attribute align="center".
You can align it on the right, by adding the attribute align="right".
A horizontal line is also possible with <hr>:
At last we have 6 headings:
<p>
<b>With <b> you make the text bold</b>,<br />
<i>with <i> you make it in italics</i>,<br />
<u>with <u> you underline it</u> and<br />
<tt>with <tt> you type like a type machine</tt>.
</p>
<p>
<center>
With <center> you can center your text,
</center>
and with <br> you make a new line: <br /><br />
</p>
<p>
With <p> you make a new paragraph.
</p>
<p align="center">
A paragraph can be centered as well, by adding the attribute align="center".
</p>
<p align="right">
You can align it on the right, by adding the attribute align="right".
</p>
<p>
A horizontal line is also possible with <hr>:
<hr />
You can change the thickness of the line with the attribute <i>size</i>, and the length with <i>width.</i>
</p>
<p>
At last we have 6 headings:
<h1>This is <h1> (Head 1). The biggest possible heading.</h1>
<h2>This is <h2> (Head 2).</h2>
<h3>This is <h3> (Head 3).</h3>
<h4>This is <h4> (Head 4).</h4>
<h5>This is <h5> (Head 5).</h5>
<h6>This is <h6> (Head 6). The smallest possible heading.</h6>
</p>