links:
- to define the title display in the popup:
<a href="http://www.uml.org" title="language: en | format:
HTML" target="_blank">OMG</a>
- open the links of the page in new windows
<html>
<head>
...
<base target="_blank">
</head>
<body>
...
</body>
</html>
table:
- to indicate that a cell is the fusion of several one, use the rowspan and colspan attributes of <TD>
<TABLE border=1>
<TR><TD rowspan=2
colspan=2>big
cell</TD><TD>small cell</TD></TR>
<TR><TD>small
cell</TD></TR>
<TR><TD>small
cell</TD><TD>small cell</TD><TD>small
cell</TD></TR>
</TABLE>
form:
- entry of a file name
<input type="file">
style:
- <FONT STYLE='background-color: #ff00ff'>errors are
indicated in
magenta</FONT>
<FONT STYLE='color: #0000ff'>logs are reported in
blue</FONT>
cookbook:
- write in green links if JavaScript is not supported
<font color="#008800">
<script>
<!--
document.write('</font><a href="javascript:doAction();"
CLASS="french">');
// -->
</script>
Click here</font><script>
<!--
document.write('</a><font color="#008800">');
// -->
</script>
</font>
Last update: December 1st,
2004 - Laurent