How to Display HTML Codes |
|
This is a table of common HTML tags. |
| Character | Code | HTML use | Comment |
| BOLD | <B> | <B>bold</B> | To make bold text |
| UNDERSCORE | <U> | <U>underscored</U> | To make underscored text |
| ITALICS | <I> | <I>italicized</I> | To make italicized text |
| SUPERSCRIPT | <SUP> | <SUP>superscripted</SUP> | To make superscripted text |
| SUBSCRIPT | <SUB> | <SUB>subscripted</SUB> | To make subscripted text |
| HYPERLINK | <A HREF="link"> |
<A HREF="http://www.fsl.orst.edu/tgerc/iufro2001/"> link to my site</A> |
To make a link to my site work |
| MAILTO LINK |
<A HREF= "MAILTO:email_address"> |
<A HREF="MAILTO:outreach@for.orst.edu"> mailing-link</A> |
To make a mailing-link work |
|
|