HTML Tutorials
Changing Text Size, Color & Style
Back to Home Page Back to HTML Tutorials Home Page
Back to HTML Codes and Questions
Here is some code that will help you change the way words on your page look. You can create your very own style. The new HTML code will be in bright colors below.
<HTML>
<HEAD>
</HEAD>
<BODY>
<H1> H1 makes the text very large. </H1>
<H6> H6 makes the text very small. </H6>
<H4> H4 makes the text medium size. </H4>
<H2> You can also try H2, H3 & H5. </H2>
<CENTER> Your text will be in the center </CENTER>
<RIGHT> Your text will be to the right <RIGHT>
<U> Your text will be underlined </U>
<EM> Your text will have emphasis (italic style) </EM>
<STRONG> Your text will be bold </STRONG>
<FONT COLOR = "RED"> Your text will be red </FONT>
<FONT COLOR = "BLUE"> Your text will be blue </FONT>
<FONT COLOR = "YELLOW"> Your text will be yellow </FONT>
There are about 17 million different colors you can choose.
One last thing: You can choose any combination of codes. Use your imagination. For example:
<H3><CENTER><FONT COLOR = RED> Hello!!! </FONT></CENTER></H3>
Did you notice how the codes were "turned off" in reverse order?
/BODY>
</HTML>