HTML CSS examples for CSS:Introduction
Hiding some HTML from IE6 with <!--[if !IE]-->
<html> <head> <style type="text/css"></style> <script type="text/javascript"></script> </head> <!-- ww w . j a v a 2s . c o m--> <body> <!--[if !IE]--> <h1>You're not using IE. Well done!</h1> <!--[endif]--> </body> </html>