Some other special effects
Some other special effects
MAILTO:
- Often, at the bottom of your pages
- "Send suggestions and corrections to: Jon Edwards"
- Here's all you need to do:
- <A HREF=mailto:hostname>What_The_ WWW_User_Sees</A>
- So the actual code for my mailto is:
- <A HREF=mailto:jedwards@princeton.edu>Jon Edwards</A>
Tables
A simple example:
| item 1 |
item 2 |
| item 3 |
item 4 |
Here's the html code:
<table border=10 cellspacing=10>
<tr>
<td>item 1</td>
<td>item 2</td>
</tr>
<tr>
<td>item 3</td>
<td>item 4</td>
</tr>
</table>