我们如何在HTML代码中添加注释?

HTML <comment>标记允许作者注释其HTML代码。

建议使用<!--....-->注释标签。该标签与所有浏览器兼容。

注意-HTML5中已弃用<comment>标记。不要使用它。

示例

<!DOCTYPE html>
<html>
   <head>
      <title>HTML <!--....--> Tag</title>
   </head>
   <body>
      <comment>This is a commented line in IE</comment>
      <!-- This is a commented line supported by almost every browser.
         It will not appear in output as its a comment.
      -->
   </body>
</html>