Guides ->HTML
Below are some helpful HTML tricks that can make your KT page look just how you want it! Just copy the code under what you want and paste it onto your KT homepage. These are only very basic, though, if you want a more professional layout, ask around on the Ad board to see if someone will make you one :)
- To make bold text:
<b>Text here</b>
- To make underlined text:
<u>Text here</u>
- To make italic text:
<i>Text here</i>
- To make a paragraph:
<p>Text here</p>
- To go down a line:
<br>Text here.
- To make superscript text:
<sup>Text here</sup>
- To make text colored:
<font color=COLOR HERE>Text</font>
- To make a link:
<a href="YOUR URL HERE">Link</a>
- To make text small:
<small>Text here</small>
- To make text big:
<big>Text here</big>
- To make a table:
<table width="WIDTH HERE" height="HEIGHT HERE" border="1" bordercolor="#000000"><tr><td>Text here</table>
- To make a textarea: (This displays HTML in a small box - remember to close this tag!!)
<textarea>All your HTML you want displayed here.</textarea>
<--Back