|
|
Author: * Porciae Porcius -
7 Posts
on this thread out of
355 Posts
sitewide.
Date: Jan 8, 2004 - 04:00
OTHER STUFF
|
FONT BREAKS
|
<br> stuff <p> stuff |
The <br> function takes you down to the next line like this.The <p> function adds a gap between paragraphs like this.
|
ALIGNMENT
|
<p align="left">stuff</p>
<center>stuff</center>
<p align="right">stuff</p>
|
This works for text, images, tables - just about everything. You can align them left centeror right.
|
LISTS
|
| For bullet point lists: | <ul> <li>blah <li>blah <li>blah </ul> |
| For numbered lists: | <ol> <li> blah <li>blah <li>blah </ol> |
|
- bullet one
- bullet two
- bullet three
|
- point one
- point two
- point three
|
|
HORIZONTAL RULE
|
For a regular line that runs across the length of your browser: <hr>
For a line without default shading <hr noshade>
For a shorter line: <hr width=300> OR <hr width=50%>
300 is the number of pixels and 50% is the percent of the screen you want it to take up.
Line size is almost exactly the same thing.
<hr size=10>
Line color: look familiar? <hr color=red>
|
|
|