ilyt.org is supported by
Videos
Text Codes
Learning to use text codes
Formatting text is very easy if approached correctly. MySpace layouts, comment boxes, images, "codes", etc. is all in HTML. [HypterText Markup Language].
For the most part, you can think of HTML as a series of TAGS and ATTRIBUTES. What? Ok, check it out.
Lets try using the <u> tags (underline).
Sometimes underlined text is best.
Sometimes <u>underlined</u> text is best.
For most text codes, it's that simple.
Text Formatting
<b>bold</b>
<i>italic</i>
<em>emphasis</em> (newer version of <i>)
<big>big</big>
<small>small</small>
<sup>SuperScript</sup>
<sub>SubScript</sub>
Text Sizing
<font size="7">Huge</font>
<font size="5">Large</font>
<font size="3">Regular Size</font>
<font size="2">Small</font>
<font size="1">Tiny</font>
Text Coloring
<font color="000000">Black</font>
<font color="FFFFFF">White</font>
<font color="FF0000">Red</font>
<font color="00FF00">Green</font>
<font color="0000FF">Blue</font>
<font color="FFFF00">Yellow</font>
Normally the color would have a # sign, for example <font color="#000000">, but MySpace has always filtered these out.
Combining size and color is easy:
<font color="0000FF" size="5">Large Blue</font>
Paragraphs & Positioning
<center>Centered text and any other elements</center>
<p align="left">Paragraph on the left</p>
<p align="right">Paragraph on the right</p>
<p align="center">Paragraph center</p>

