SWLE
Link exchange

Support - HowTos & FAQs - ~ HTML ~

Alba - Fri Nov 26, 2010 10:09 am
Post subject: ~ HTML ~


As i see many members asking about HTML for shortnotes, i will post here a few simple things


*Text:


<u>This text is underlined</u>

<b>This text is bold</b>

<i>This text is italic</i>

<strong>This text is strong</strong>

<font color='red'>This text is red</font>
"list of colors"

<font size='3'>This size text is normal</font> You can make it smaller or bigger by changing the number

<font face='Comic Sans MS'>This text is face Comic Sans MS</font>


You can use them together like that:

<font color='yellow' face='Comic Sans MS' size='4'>This text is yellow, comic sans ms and big</font>


If you want it also bold and italic:

<b><i><font color='yellow' face='Comic Sans MS' size='4'>This text is yellow, comic sans ms, big, italic and bold</font></i></b>


Also, you can do it one by one:

<b><i><font color='yellow'><font size='4'><font face='Comic Sans MS'> here your text</font></font></font></i></b>


Always remember that every tag must be closed after your text.



*Images:


<img src="url" alt="some_text"/>


The URL points to the location where the image is stored.
The alt attribute provides alternative information for an image if a user for some reason cannot view it.

Example:


<img src="http://yarold.eu/phpBB2/album_pic.php?pic_id=84" alt="my_sign"/>

It's my signature ;)



*Other


<br> for next line
<center> This text is centered text</center>


Powered by phpBB modified by Przemo © 2003 phpBB Group