<H?>
and </H?>
tags, where ? = 1, 2, 3, 4, 5,
or 6
.
<OL>
tag.<LI>
and </LI>
tags.</OL>
tag.<OL> <LI>Start with ...</LI> <LI>Enter the ...</LI> <LI>End with ...</LI> </OL>
<UL> <LI>cerial</LI> <LI>dairy</LI> <UL> <LI>milk</LI> <LI>yoghurt</LI> </UL> <LI>orange juice</LI> </UL>
<DL> <DT><STRONG>Rectangle</STRONG></DT> <DD>area = a b, where ....</DD> <DT><STRONG>Parallelogram</STRONG></DT> <DD>area = b h, where ....</DD> </DL>
<BR>
tags. New
paragraphs are started when the WWW browser
reaches a <P>
tag. Formatting
options for paragraphs are available. For
example, you can center a paragraph by the <P
ALIGN=CENTER>
tag (default:
left-adjusted). An example: Memo
To:
Anne Kaldeway, Tom Koornwinder
Subject:
Maple + HTML Course
André Heck and Leendert van Gastel
<P ALIGN=CENTER> Memo </P> <P> To:<BR> Anne Kaldeway, Tom Koornwinder </P> <P> Subject:<BR> Maple + HTML Course <P ALIGN=RIGHT> Andr&eacute; Heck and Leendert van Gastel </P>
<PRE>
tag, which
stands for "preformatted", to generate
text in a fixed-width font and preserve spaces
and carriage returns. F := proc(n) if n=1 or n=2 then 1 else F(n-1) + F(n-2) fi end:
<PRE> F := <STRONG>proc</STRONG>(n) if n=1 or n=2 then 1 else F(n-1) + F(n-2) fi <STRONG>end</STRONG>: </PRE>