<HTML>
<HEAD>
<TITLE> My Page Title </TITLE>
</HEAD>
<BODY BGCOLOR=white>
<CENTER> <! between CENTER and /CENTER is centered>
<H1> My Page Title </H1>
</CENTER>
<! example of image display>
<IMG SRC="atlas-hold.gif">
<! end of image display>
<P> <! newline>
<!example of links : the text "my first link" will be a link to the file "first_item.txt" >
<A HREF="first_item.txt"> my first link </A>
<! example of bullet list items with links>
<UL>
<LI> <A HREF="first_item.txt"> First item </A>
<LI> <A HREF="second_item.txt"> Second item </A>
</UL>
<! end of bullet list items>
<! example of table>
<TABLE BORDER=1>
<CAPTION> <B> Table Title </B> </CAPTION>
<TR> <! new row>
<TD> Row 1 Col 1 </TD>
<TD> Row 1 Col 2 </TD>
</TR> <! end of row>
<TR> <! new row>
<TD> Row 2 Col 1 </TD>
<TD> Row 2 Col 2 </TD>
</TR> <! end of row>
<TR> <! new row with links>
<TD> <A HREF="first_item.txt"> Row 3 Col 1 </A> </TD>
<TD> <A HREF="second_item.txt"> Row 3 Col 2 </A> </TD>
</TR> <! end of row>
</TABLE>
<! end of table>
<HR> <! line>
<A HREF="http://www-atlas.lbl.gov/"> LBNL Atlas home </A>
</BODY>
</HTML>