Miscellaneous HTML codes This is a text file. As such, most browsers simply display the contents without interpreting any of the codes. When this file is read from a local drive, IE 4.72 & IE 5.00 display this as a simple text file. However, when it is read from the web (same file and same extension), the html tags may be interpreted and the file is then displayed wrong! (If this happens to you, use View Source to see the codes.) (This appears to be controlled by how many characters there are from the beginning of the document and the first
 tag. No kidding.
If the 
 is more than 188 characters from the beginning of the file,
this is treated as a text file, otherwise, it is treated as an html file :)

Netscape Communicator 4.05 always displays this as a text file.

	Comment
	Block Comment, can contain additional codes
DATE	Bold
DATE	Italic
DATE	Underline
..
Preformatted - Use courier, keep spacing, no line wrap Imbedded codes are interpreted .. Example - obsolete (deprecated), replaced by
		  Imbedded codes are NOT interpreted
                  Since no other tag does this, it should not be deprecated  
<H1>..</H1>	Headings 1 thru 6
<BR>		Break - same as a hard return
<p>		Paragraph - Two hard returns
<blockquote>    Indents text between tags
</blockquote>
<HR>		Horizontal Rule (line)

<hr><! ********************************************************>
<hr ********************************************************>

<hr size="1" noshadow align=center width=80%> Width is absolute or %
<hn align={left | center | right}> </hn> (replace n with a heading number)
<p align={left | center | right}> Stays in effect until next <p> or <hr> 
<p align=right> does not work in some IE 5.00 tables, I've seen it both ways

<DL>		Definition List
    <DT>	Definition Term
    <DD>	Definition Definition (next line and indented)
</DL>

<DD>		<br> & Tab if outside <DL> .. </DL> Otherwise, indent

<UL> <LI> </UL>	Unordered list, uses bullets - solid circle, open circle, solid square, solid square
		<UL> produces a break and an indent - HTML 2.0 extension

<OL> <LI> </OL>	Ordered list, uses Numbers - 1.
<OL type=x> <LI> </OL>  Ordered list, Type={A | a | I | i | 1}
<LI type=x> 	Type={A | a | I | i | 1}
		<OL> produces a break and an indent - HTML 2.0 extension


<A HREF="#files">Files</A>   Local reference
<A name="files"></A>
<a href="./tables/dine.html" target="new"> // Opens a new window in Netscape

<A HREF="file:///H|/Local HTML/Index.htm" ADD_DATE="868397229" LAST_VISIT="870728622" LAST_MODIFIED="868397210">EER Site Index</A>

<H3 FOLDED ADD_DATE="867429276">Search</H3>
<IMG SRC="PWC_TIT2.gif" HEIGHT=150 WIDTH=500>
<IMG SRC="welcome.gif" ALT="Welcome!">	Provides Text alternative
<IMG SRC="./tables/dot_clear.gif" VSPACE="2">
<CENTER><B>CALENDER EVENT</B></CENTER>
<A HREF="http://204.122.127.80">Back to Main</A>
<a href="http://www..."  
   OnMouseOver="window.status='Status Help String';return true;"> ... </a>

<FONT SIZE=+3> ... </FONT>
<font face="arial" size=2 color=blue> face is not in HTML 3.2

Table Definition
 <table bgcolor="#ffffff" cellspacing=0 cellpadding=2 border=1>
 <CAPTION> ... table caption ... </CAPTION> 
 <tr valign=top> 
 <td colspan=6 align=center><B><FONT FACE=ARIAL SIZE=2>
   North America -  spacing=0 padding=2 border=1</b></font></td>
 </tr>

 <tr valign=top>
 <td width=100 align=center>Column 1</td>
 <td width=100 align=center>&nbsp;</td>     Default background color
 </table>

 <table cellpadding="0" cellspacing="0" border="0" width="560">
 <td align="right">
 <td align="left">
 <tr bgcolor="#F9F4DE">

Multicolumn text
   Requires Netscape 3.x or higher, Explorer 4.x or higher
   No effect in IE 4.72, works in Netscape 4.05
   Two columns with a 15 pixel space between them:

  <MULTICOL COLS=2 GUTTER=15 WIDTH=80%>

...your text goes here...

  </MULTICOL>

*****

<div align="center">...</div> {left | center | right}

Unknown use

<td> <span class=bodytext>  ...  </span>

Colors

bgcolor="#c0c0c0"   Normal background gray
bgcolor="#ffffff"   White
bgcolor="#000000"   Black
bgcolor="#xxyyzz"   xx=red yy=green zz=blue in hex
bgcolor="black"     Black

   aqua, black, blue,   fuchsia, gray,   green, lime,  maroon,
   navy, olive, purple, red,     silver, teal,  white, yellow



Images used in Netscape directory listings
These also produce images in IE 4.72 & IE 5.00

<IMG ALIGN=absbottom BORDER=0 SRC="internal-gopher-menu">
<IMG ALIGN=absbottom BORDER=0 SRC="internal-gopher-unknown">
<IMG ALIGN=absbottom BORDER=0 SRC="internal-gopher-text">
<IMG ALIGN=absbottom BORDER=0 SRC="internal-gopher-binary">

Set the base url and directory
<base href="http://cpcug.org/">


Tell Search engines about your site
 <HEAD>
  <META NAME="description" CONTENT="CPCUG Paradox page">
  <META NAME="keywords" CONTENT="Paradox, User Group, CPCUG> //Use commas
 </HEAD>


Codes

/H%7C    /H: Use in HREF only, not heading or title
&nbsp;   Non-breakable space
%20      Space
&gt;     >
&lt;     <
&micro;  µ
&plusmn; ±

*******

Style Examples

<STYLE>
<!--
.bodytext{font: "arial";}
.title1{color:green;text-decoration: none;}
.title2{color:green;text-decoration: none;}
-->
</STYLE>

<font size=6 face="arial" class=title1>

<td> <span class=bodytext>  //???

*******

Revision history
  8-13-97 - most of this is complete
  7-27-98 - Style sheets
  7-28-99 - xmp
  9-29-99 - Added note to Multicol - Netscape only!
  5-04-00 - Added <blockquote>
  9-29-00 - Discovered that IE 4 & 5 interprets codes in .txt files