Test file

The following is a test area:

Fonts

<font color="ff0000">
Red text is ff0000

<font color="000000">
Black text is 000000


<font size=2>
This is font size 2

<font size=3>
This is font size 3

<font size="-1">
This is 1 font size smaller than the base font

<font size="+1">
This is 1 font size larger than the base font

<font size=3>
This is font size 3 again

But it doesn't affect the tables. Tables require a font size in every column.

Links

This is the format of a web link:
New England Journal of Medicine
<a href="http://www.nejm.org"> New England Journal of Medicine</a>

This is the format of a web link that lets you stay in the old window while it opens a new window:
New England Journal of Medicine
<a href="http://www.nejm.org" target="_blank"> New England Journal of Medicine</a>
Or:
New England Journal of Medicine
<a target="new" href="http://www.nejm.org"> New England Journal of Medicine</a>

This is a link to a location lower down on the page:
Link starts here
<a href="\crib.htm#link"> Link starts here</a>

This is the format of an email link with just an address:
nbauman@nasw.org <Norman Bauman>
<a href="mailto:nbauman@nasw.org">nbauman@nasw.org <Norman Bauman></a>

This is the format of an email link with an address and subject:
<a href="mailto:nbauman@nasw.org?subject=Writers' Mailing List">nbauman@nasw.org <Norman Bauman></a>
nbauman@nasw.org <Norman Bauman>

Tables

Table html tags
<table border=1> starts a table with border of 1
<tr> table row, starts a new row
<td> table data, starts a column within a row.
</td> ends table data in that column.
<td> table data, starts another column within a row.
</td> ends table data in that column.
<tr>ends a table row.
</table> ends a table.

Table 1
<tr> </tr> <tr> .</tr>
<td> table data, starts a column within a row.
</td> ends a column
<td> table data, starts a column within a row.
<td> table data, starts a column within a row. <td> table data, starts a column within a row.

Table 2a
<td valign=top width="14%"> <td width="14%"> <td width="14%"> <td width="14%"> <td width="14%"> <td width="14%"> <td width="14%">

Table 2b
<table border=1 width="100%">
<td valign=top width="14%">
Mon
Tue Wed Thu Fri Sat Sun
This is the first entry in the table. Second Third Fourth Fifth Sixth Seventh

Resume
Column spanning
1996-
1999
Urology Times
Wrote all kinds of stuff
1995 Ophthalmology Times

Link goes here. (But it doesn't work in Internet Explorer.)
<a name="link">Link goes here.</a>

Rules


<hr width=50%>


<hr width=50% size=1 noshade>







Lists

Unordered List
<ul type=disc>
(Or type=circle, type=square)
<LI>
  • First
  • Second
  • Third
  • Fourth
Ordered List
    <ol type=1>
  1. First
  2. Second
  3. Third
  4. Fourth