Organisational Elements

Contents

  1. Headings
  2. Lists
  3. Paragraphs and Line Breaks
  4. Preformatted Text

This is an H1 header

 

This is an H2 header

 

This is an H3 header

 

This is an H4 header

 
This is an H5 header
 
This is an H6 header
The header is surrounded by <H?> and </H?> tags, where ? = 1, 2, 3, 4, 5, or 6.



Memo

To:
Anne Kaldeway, Tom Koornwinder

Subject:
Maple + HTML Course

André Heck and Leendert van Gastel


HTML Code
<P ALIGN=CENTER>
Memo
</P>
<P>
To:<BR>
Anne Kaldeway,
Tom Koornwinder
</P>
<P>
Subject:<BR> Maple + HTML Course
<P ALIGN=RIGHT>
Andr&ampeacute; Heck      and      Leendert van Gastel 
</P> 
   


F := 
proc(n)
  if n=1 or n=2
  then 1
  else F(n-1) + F(n-2)          
  fi
end:
        

HTML Code
<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>
    

Back Back to HTML Course Contents