| HTML Tags |
- Intro: This site contains HTML Tips / HTML tags for posting on a forum / message board. There is also a page with tips for posting an image on a forum.
BTW: A HTML Practice Page is included.
- General Rules: You must use the < and > symbols around the HTML Tags. Most tags require a closing. The closing tags have a '/' (slash) in front of the tag keyword e.g. </font>
The HTML code generators (see menu) are for visitors that do NOT need detailed tutorials - visitors that just need to input an URL - then generate the code - to copy n paste into a forum or message board.
<font color="red" size="7"> test </font>
Will display:
test
<font color="red"> test </font>
Will display:
test
<font size="6"> test </font>
Will display:
test Note: 7 is maximum size i.e. using a larger number will result in a size '7'.
Here are a couple of example font 'faces' that are popular: <font size=3 face="Lucida Handwriting"> Text </font>
"Lucida Handwriting" Text Here (Another popular face = "Comic Sans MS") P.S. For 'face' names with more than one word, you must put " " around the 'face' name i.e. "Lucida Handwriting" or "Comic Sans MS" must be in quotes.
Note: Using a different font (face) will not 'work' unless the visitor has the font (face) loaded on their machine :(
<font size="6" color="red" face="wingdings"> J K L </font>
Will display: J K L
Here are some wingding results:
| A= A |
a= a |
1= 1 |
| B= B |
b= b |
2= 2 |
| C= C |
c= c |
3= 3 |
| D= D |
d= d |
4= 4 |
| E= E |
e= e |
5= 5 |
| F= F |
f= f |
6= 6 |
| G= G |
g= g |
7= 7 |
| H= H |
h= h |
8= 8 |
| I= I |
i= i |
9= 9 |
| J= J |
j= j |
0= 0 |
| K= K |
k= k |
-= - |
| L= L |
l= l |
== = |
| M= M |
m= m |
~= ~ |
| N= N |
n= N |
!= ! |
| O= O |
o= o |
@= @ |
| P= P |
p= p |
#= # |
| Q= Q |
q= q |
$= $ |
| R= R |
r= r |
%= % |
| S= S |
s= s |
^= ^ |
| T= T |
t= t |
&= & |
| U= U |
u= u |
*= * |
| V= V |
v= v |
(= ( |
| W= W |
w= w |
)= ) |
| X= X |
x= x |
_= _ |
| Y= Y |
y= y |
+= + |
| Z= Z |
z= z |
?= ? |
| := : |
;= ; |
"= " |
<a href="URL">Screen Text Here</a> |
| Return to Listing |