CreationsGuidesTutorialsTravelLogin
HTML Basics

Bold Text

1
This is a <b>test</b> sentence.
This is a test sentence.

1
This is a <strong>test</strong> sentence.
This is a test sentence.

Italic Text

1
This is a <i>test</i> sentence.
This is a test sentence.

Underline Text

1
This is a <u>test</u> sentence.
This is a test sentence.

Strike Through/Cross Out Text

1
This is a <strike>test</strike> sentence.
This is a test sentence.
1
This is a <s>test</s> sentence.
This is a test sentence.

Subscript Text

1
This is a <sub>test</sub> sentence.
This is a test sentence.

Superscript Text

1
This is a <sup>test</sup> sentence.
This is a test sentence.
You can use <sup> and <sub> as many times you want to make your text even smaller. An example is below.

1
This is a <sub><sub><sub>test</sub></sub></sub> sentence.
This is a test sentence.

1
This is a <sup><sup><sup>test</sup></sup></sup> sentence.
This is a test sentence.

Small Text

1
This is a <small>test</small> sentence.
This is a test sentence.

Center Text

1
<div align="center">This is a test sentence.</div>
This is a test sentence.
You can also replace the word 'center' with 'right' or 'left'. Left is default.

1
<center>This is a test sentence.</center>
This is a test sentence.

Paragraphs

1
<p>This is a test sentence.</p>This is another sentence.

This is a test sentence.

This is another sentence.

Line Breaks

1
This is a test sentence.<br>This is another sentence.
This is a test sentence.
This is another sentence.
1
This is a test sentence.<br />This is another sentence.
This is a test sentence.
This is another sentence.

Creating Links

1
Click <a href="#">here</a> to test links.
Click here to test links.
Replace '#' with the link/url you want to go to.

Show A Image

1
<img src="http://mandysmith.fii.me/images/layout/logo2.png">
1
<img src="http://mandysmith.fii.me/images/layout/logo2.png" width="150" height="100">
Using width and height can change the image quality. NOTE: You are not actually editing the image.