<COMMENT>...</COMMENT>
Description
Used to insert comments in the HTML source which will be ignored by the
browser. Note that HTML elements inside the comment will not be ignored.
If the text you want to comment contains HTML elements you must use the
!-- element because this ignores all HTML
elements also.
Attributes
** None **
Examples
 |
<UL>
<LI>Item one in the list.
<LI>The second item
<COMMENT>Add items as they come available</COMMENT>
</UL>
|
| |
 |
- Item one in the list.
- The second item
Add items as they come available
|