Otmar's List of HTML tags.
This list is intended to help edititing HTML documents.
It is not a comprehensive list (HTML, HEADER, TITLE,
BODY, IMG, ... are missing),
but should suffice for most purposes. I'm open for suggestions,
so please send your comments to me.
HEADINGS (<H#> ... </H#>)
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
SEPARATORS
- Paragraph Break: <P>
- Line Break: <BR>
- Horizontal Rule: <HR>
LISTS
UNNUMBERED
<UL>
<LI> apples
<LI> bananas
</UL>
NUMBERED
<OL>
<LI> oranges
<LI> peaches
<LI> grapes
</OL>
- oranges
- peaches
- grapes
DESCRIPTIVE
<DL>
<DT> THHGTGG
<DD> "The Hitchhiker's Guide to the Galaxy" was originally a BBC
radio series which ....
<DT> Netrek
<DD> Netrek is a networked multiuser game. It is not a simple
shoot-em-up game, but ....
</DL>
- THHGTGG
- "The Hitchhiker's Guide to the Galaxy" was originally a BBC
radio series which ....
- Netrek
- Netrek is a networked multiuser game. It is not a simple
shoot-em-up game, but ....
PREFORMATTED TEXT
<PRE>
##### ###### # # #####
# # # # #
# ##### ## #
# # ## #
# # # # #
# ###### # # #
</PRE>
##### ###### # # #####
# # # # #
# ##### ## #
# # ## #
# # # # #
# ###### # # #
BLOCK QUOTES
Here is a quote from P. Erdos:
<BLOCKQUOTE>
"A mathematician is a device for turning coffee into theorems."
</BLOCKQUOTE>
Here is a quote from P. Erdos:
"A mathematician is a device for turning coffee into theorems."
ADDRESS
<ADDRESS>
Maintained by lendl@cosy.sbg.ac.at
</ADDRESS>
Maintained by lendl@cosy.sbg.ac.at
CHARACTER HIGHLIGHTING
- Logical (Preferred)
-
- Emphasized: <EM>Emphasized</EM>
- Citations: <CITE>Citations</CITE>
- Variable name: <VAR>Variable name</VAR>
- Stronger Emphasized: <STRONG>Stronger Emphasized</STRONG>
-
Source Code: <CODE>Source Code</CODE>
- Samples: <SAMP>Samples</SAMP>
- Keyboard Input: <KBD>Keyboard Input</KBD>
- Definitions: <DFN>Definitions</DFN>
- Physical (Discouraged)
-
- Italics: <I>Italics</I>
- Boldface: <B>Boldface</B>
- Typewriter: <TT>Typewriter</TT>
SPECIAL CHARACTERS
-
< to generate a <
-
> to generate a >
-
& to generate a &
lendl@cosy.sbg.ac.at
Last update: 15.2.94