NOTE: this is NOT "forum" BBcode or Wikipedia code.
All tags have beginnings and closings except for images. I'll put
TEXTin between formatting tags...Bold :
<b>TEXT</b>or<strong>TEXT</strong>
usingstrongis highly recommended.Italics :
<i>TEXT</i>or<em>TEXT</em>
usingem(emphasis) is highly recommendedLinks :
<a href="URL">TEXT</a>Font :
<font face="FONTNAME" size="FONTSIZE" >TEXT</a>the size can be something like12or14(like in Word)+4,+2,-2, etc (larger or smaller than the standard size) orxx-small,x-small,small,medium,large,x-large,xx-large. You can even just saylargerorsmaller.
font face name can either be specific or you can typeserif,sans-serif, ormonospace(monospaced is plain-text looking like Courier New)Images :
<img src="URL" width="PIXELWIDTH"
height="PIXELHEIGHT" alt="TEXT" />
insert pixel denominations for width and height
thealtattribute is what displays when you roll over it.Embed :
<embed src="URL" width="PIXELWIDTH"
height="PIXELHEIGHT" wmode="transparent"></embed>
you can embed mp3's, flash, etc.
test the width and height...they can be kind of weirdLine Breaks : a line break is a simple
</br>wherever you want itBulleted List : Begin the list with
<ul>and end with</ul>. each bulleted item will be<li>TEXT</li>
To make hierarchies like:• TEXT
____• TEXT
• TEXTyou type
<li>TEXT</li>
and then to make a sub-item add another<li>TEXT</li>right before the closing</li>
Example: the above example would look like:
<ul>
<li>TEXT
<li>TEXT</li>
</li>
<li>TEXT</li>
</ul>Tables: Begin with
<table width="WIDTH" border="PIXELS" cellspacing="PIXELS" cellpadding="PIXELS">and end with</table>
Width can be pixels or type100%to make it fill the entire space.
Rows begin with<tr>and end with</tr>
Each cell in a row is<td>TEXT</td>
Example: two rows, two columns at 100% would be:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>TEXT</td>
<td>TEXT</td>
</tr>
<tr>
<td>TEXT</td>
<td>TEXT</td>
</tr>
</table>Padding is the margins of the cell, spacing is how far apart each cell is.
(both are in pixels)
Border is the number of pixels of a line in the border.

No comments:
Post a Comment