Layouts
♥ Default Lyts ♥ Double-Background Lyts ♥ Regular Lyts ♥ Skinny Lyts ♥ Skinny Default Lyts ♥ Table Background Lyts ♥

Learning Basic HTML
Aligning Text - Images - Links - Symbols - Text Effects
How To Get Bold, Underlined, Italic And Striked-Out Text
Use to code below to get bold text, like this...<b>bolded text</b>
Use to code below to get underlined text, like this...
<u>underlined text</u>
Use to code below to get italic text, like this...
<i>italic text</i>
Use to code below to get striked-out text, like this...
<s>strike-out text</s>
How To Get Coloured Text
Red? Orange? Yellow? Green? Blue? Purple? Pink? Brown?<font color="color name">texxxxxxxt</font>
The colours in the sample above are just the default colours you can get. There are many other different shades, but you need to use a hex code.
<font color="#hex code">texxxxxxxt</font>
How To Get Bigger/Smaller Text
Use the code below to get your text one font size smaller...<small>small text</small>
Use the code below to get your text one font size bigger...
<big>big text</big>
Use the code below to get whatever sized text you want, eg: 15, 5, etc.
Replace # with any number. The smaller the number, the smaller the size.
<font size="#">texxxxxxxt</font>
Breaking Up Lines
Wantto
break
your
lines
like
this?
Put the following code at the END of each line -
<br>Want
to
break
your
lines
like
THIS?
Put the following code at the END of each line -
<p>
How To Change The Font Of Your Text
This is text using the font GEORGIA.This is text using the font TAHOMA.
This is text using the font CENTURY GOTHIC.
This is text using the font TREBUCHET MS.
This is text using the font SMALL FONTS.
Use the code below to change "font name" to any font you want. I know they're boring, but it's best to use the common ones *above* rather than ones you downloaded, as not everyone will have them.
<font face="font name">texxxxxxxt</font>
Combining Everything!!
You can combine everything you have learnt on this page to create underlined red small fonts text or big bold purple georgia text, for example. Use the code below to change the text colour, font and size all at once. To make it bold/underlined/italic/striked-out, just add the required tags (see top of page) to the start and end.<font color="colour" face="font name" size="#">texxxxxxxt</font>
Confused?! The HTML code for small underlined green trebuchet ms text would be as follows:
<u><font color="green" face="trebuchet ms" size="1">texxxxxxxt</font></u>


