Web Development HTML Guide - Learn HTML
Developer Tutorials
ASP
CGI & Perl
CSS
Flash
HTML
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML



Developer Manuals
Learn HTML
Learn PHP
Learn MySQL
Learn CSS
Learn Pear


Developer Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Developer Resources
Developer Tools
Developer News
Developer Forums
Developer Content
Developer Book Reviews
Survey Software

Web Hosting Directory
Budget Web Hosting
ColdFusion Hosting
Dedicated Servers
Domain Hosting
E-Commerce Hosting
Email Hosting
Free Web Hosting
Linux Web Hosting
Managed Hosting
Reseller Hosting
Small Business Hosting
Windows Web Hosting

<COMMENT>

Usage Recommendation
don't use it thumbs down

<COMMENT> is an old Mosaic and Microsoft Internet Explorer tag. It's a nice tag, but it was implemented in a weird way and never really caught on. Don't use it. <COMMENT> causes the browser to ignore everything between <COMMENT> and </COMMENT>. Unfortunately, because Netscape does not recognize the tag, most people will see those embarrassing comments:

<COMMENT>
Plans for improving this page: 
   - stop writing pages in the nude
   - learn to spell
</COMMENT>

gives us

Plans for improving this page: - stop writing pages in the nude - learn to spell

<COMMENT> only ignores text which is NOT in a tag. For example,

<COMMENT>
Plans for improving this page: 
   - <B>GOT</B> to stop writing pages in the nude
   - learn to spell
</COMMENT>

prints the GOT part:

Plans for improving this page: - GOT to stop writing pages in the nude - learn to spell

No word yet on whether this is considered a bug or a feature.