|
<body background="IMAGE URL">
Background (Non-Moving) <body background="IMAGE URL" bgproperties="fixed">
Body Background Colors <body bgcolor="COLOR OR HEX CODE HERE">
Making A Line
<hr width=NUMBER color=COLOR size=NUMBER>
Backgroud Music <BGSOUND SRC="MIDI URL" AUTOSTART="true" HIDDEN="true" LOOP="infinite"> |
|
<font color=COLORHERE>TEXT HERE
Changing Font Sizes <font size=NUMBER>TEXT HERE
Changing Font Faces <font face="FONTNAME">TEXT HERE
Combining It All <font face="FONT" size=NUMBER color=COLORHERE>TEXT HERE
Adding Extras
<i>Italicized</i>
| ||||||||
|
<marquee>TEXT HERE</marquee>
Bouncy Marquee <marquee behavior=alternate>TEXT HERE</marquee>
Marquee with Background Color <marquee bgcolor=aqua>TEXT HERE>/marquee<
Marquee Directions <marquee direction=right, left,up,or down>TEXT HERE</marquee>
Marquee Speed <marquee scrollamount=NUMBER>TEXT HERE</marquee>
Marquee Width <marquee width=percent OR number>TEXT HERE</marquee>
Marquee That Stops <marquee behavior=slide>TEXT</marquee>
Combining It All <marquee bgcolor=COLOR width=#scrollamount=# direction=L,R,U,orD>TEXT HERE</marquee>
|
|
<img src="URL OF GRAPHIC">
Linking Graphics <a href="URL OF LINK"> <img src="URL OF GRAPHIC" border=0> </a>
Thumbnails <img src="URL OF GRAPHIC" height=# width=#></a>
Spacing Out Graphics <img src="URL OF GRAPHIC" hspace=# vspace=#></a> |
|
<span style=background:COLOR> TEXT GOES HERE</span>
Pink Text
Fancy Texts <TABLE STYLE="filter:___(color=____, strength=___)"> <TR><TD><center> TEXT GOES HERE</TABLE>
(*FILL IN THE BLANKS (in order): #1. dropshadow, glow, or shadow ; #2. Any color ; #3. A number 1-10 *)
Aligning Text <p align=DIRECTION>TEXT</p>
Spacing Text
Big Space: <p>
Spacing Letters
<H3 STYLE="LETTER-SPACING:#em">
TEXT HERE</H3>
TEXT HERE(* The H3 can be changed to anything from 1-6, 1 being the biggest. The # can also be changed (its the amount of space between the letters). *) | ||||||||
(steps)
|
<table>
1B) You can add extras to this part of the table, but don't make a whole new code. Examples of extras you can add:
* bgcolor=COLOR You can either do bgcolor OR background They can all go in one code, like this: <table bgcolor=white border=4 bordercolor=blue cellpadding=5 cellspacing=3>
2) Now you can add the rows. After code #1, you must type this: <tr>
3) Depending on how many columns you want, you can repeat this code over and over after code #2. Each one creates a new column (the part going down). If you only want a row with nothing separating it, write it once. <td>TEXT GOES HERE</td>
4) Now, after you make all the columns you need, you must end the row, by doing this: </tr>
5) Now, you can repeat steps #2-4 as many times as you like to make numerous rows with the same number of columns.
6) Once you made all the rows you want, you must end the table with this code: </table> |