For a quick start use the 3 HTML generators in the menu (especially the Basic HTML Generator).
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 Tag |
<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")
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 | ?= ? |
| := : | ;= ; | "= " |
| Go To Top |
| Anchor (Link) Tag |
<a href="URL">Screen Text Here</a>
<a href="http://www.ibdguy.com/">My Tips Page</a>
Will display and link to:
| Go To Top |
| Table Example |
Type (or copy and paste):
Will display:
| Happy |
| Anniversary |
Note: Since some old browsers do not display the background (bgcolor) color, it is best to use a dark font for text. In other words, always use a font color that will show up on white / light colored backgrounds.
| Go To Top |
| Secret Trick |
Biggest tip (secret) for HTML:
Anything you see someone do with HTML can be 'picked up' i.e. you can learn HTML by stealing the code /tags. Everyone does it - Trust me :)
In MSIE browsers, you click on 'View' then on 'Source' while in Netscape browser, it's 'View' then 'Page Source'. Once you view the source, you can 'copy' and 'paste' the tags you want to use.
Short Cut Hint for Windows: you can copy by using your mouse to highlight the 'section' then holding down the Ctrl key and hitting C (Ctrl C). Next you go to place you want to paste and use Ctrl V (hold Ctrl key - hit V).
| Go To Top |
| Bold, Italic, etc |
Misc. Tags
| Go To Top |
| A Few 'Entities' |
| By Name | By Number | Result: |
| & | & | & |
| < | < | < |
| > | > | > |
| |   | (blank space) |
| ¢ | ¢ | ¢ |
| € | € | € |
| £ | £ | £ |
| © | © | © |
| ® | ® | ® |
| ™ | ™ | ™ |
| ± | ± | ± |
| ° | ° | ° |
| ¼ | ¼ | ¼ |
| ½ | ½ | ½ |
| ¾ | ¾ | ¾ |
Hint: Use the < and > entities to show the HTML tags inside a web page i.e. when the code in these pages displays the HTML tags it was done with the < and > entities
For more entities, try W3 Org html 4.01 entities
| Go To Top |
Updated: Thu, Nov 24, 2011
© 1995-2011