<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>
<td> table data, starts a column within a row.
</td> ends a column
|
<td> table data, starts a column within a row.
|
</tr>
<tr>
<td> table data, starts a column within a row.
|
<td> table data, starts a column within a row.
|
.</tr>
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>
- First
- Second
- Third
- Fourth