HTML Tips

HTML Tips


HTML stands for HyperText Markup Language. This is what people use on the web to spice up their sites. Here are a few tips and tricks so that you too can spice up your site!

How To Change Text
This will change the text color. <font color="lightgrey">This will change the text color.</font> This will make the text bold. This will make the text <b>bold.</b> This will make the text italic. This will make the text <i>italic.</i> This will make the text underlined. This will make the text <u>underlined.</u>
This will make the text centered.
<center>This will make the text centered.</center> This will change the text font, size and color. <font size=4 face="comic sans ms" color="lightgrey">This will change the text font, size, and color.</font>
How To Make Tables
A simple table.
<table border=6><tr><td>A simple table</td></tr></table>
Tables with dividers
Tables with dividers
<table border=6><tr><td>Tables with dividers</td></tr><tr><td>Tables with dividers</td></tr></table>
A 2x2 table A 2x2 table
A 2x2 table A 2x2 table
<table border=6> <tr> <td>A 2x2 table</td> <td>A 2x2 table</td> </tr><tr> <td>A 2x2 table</td> <td>A 2x2 table</td> </tr></table>
Other Things
How to do a "Mouseover" <a href="" onMouseover="alert('Cute, Huh? Are you having fun yet?')">"Mouseover"</a> How To Do A Link Button
<FORM METHOD="LINK" ACTION="http://expage.com/page/myjunk"> <INPUT TYPE="submit" VALUE="Home"> </FORM> How To Do A Link Pop-Up Click Here <a href="" onClick="alert('Are you really enjoying this?')">Click Here</a> E-mail me your tips!
Back Home