Now that you have learned about tags, the basic building block of HTML, all that is left to learn are the different types of commands and how you can apply them to elements on your page.
You no longer have to be limited to plain, boring text in your posts! In this section, I will show you how to change the size and color of your text, and much more. Just keep in mind, a little goes a long way!
Bold Text: <strong>text here</strong> – text here
Italic Text: <i>text here</i> – text here
Underline Text: <u>text here</u> – text here
Strikethrough Text: <del>text here</del> – text here
Medium: <font size="2">text here</font> – text here
Large: <font size="3">text here</font> – text here
X-Large: <font size="4">text here</font> – text here
Blue: <font color="blue">text here</font> – text here
Hot Pink: <font color="hotpink">text here</font> – text here
Green: <font color="green">text here</font> – text here
Left: <p align="left">text here</p>
text here
Center: <center>text here</center>
Right: <p align="right">text here</p>
text here
<strong><center><font size="4"; color="hotpink">text here</font></center></strong>
Preview:
For example, the code with my image URL inserted is:
<img style="border:1px solid black;" src="http://thepixelista.com/square-button.png">
<img style="border:5px double blue;"src="http://thepixelista.com/square-button.png">
<img style="border:3px dotted hotpink;" src="http://thepixelista.com/square-button.png">
<img style="border:2px dashed green;" src="http://thepixelista.com/square-button.png">







