(helpful stuff) HTML Quick Reff. [Phoenix]
2006-08-21 -- 8:45 p.m.
Don't forget closing tags! For more explaination, click here for the origional crash course I made in HTML. This is a quick-ref page for those who already have a basic understanding.
The main things I want you to see are hightlighted like you see here. Yes, by the end of this page you'll be able to make your own text like this. Or any other way you like.
Please feel free to show your gratitude towards this page by linking The Circle!
| To link The Circle...: | |
| Bold | |
| Italics | |
| Underline | |
Blockquote Note: Blockquotes look different in different templates. |
|
| To make a line break is br, and to make a paragraph break is p. | |
| To change your font color change the number code in quotations to the color you want. Select the color you want by clicking on the link for the color chart below. | |
| To make a straight line, like a seperator (default style) | |
| Seperator (custom style): Change percent to change the length, change the code to change the color | |
| HTML Color Chart Codes | HTML Code Color Chart |
| To make a link...: | |
| To make a link that opens in a new window...: | |
| To insert an uploaded image...: | |
| |
Now maybe at this point you are wondering how I made the above table. With HTML! Above I used the table tags which I will show you how to make below. By the way, seperating this text from the table you see a line, that line is made using the "hr" tag as shown above. I used the color code #6699FF for that shade of blue. Click the link above to find the colors you want to use!
| To start a table you need to first use the table tag. | |
| Inside the table there are breaks in the line, just like in text. Each line in a table is within the "tr" tag. | |
| Within the "tr" tag you always need the "td" tag. So just to create a table with one line all the way across, you would use this: | |
| The table I'm using right now has a code like this: | |
| Wondering about those other things after the "table" tag? Cellpadding determines how much space there is between the text and the lines that devide the table. This one has 5px. |