HTML注释标签| HTML注释示例| HTML注释代码生成器
<!-- This is an HTML comment --/
注释开放定界符:
<!--
评论关闭定界符:
--/
要在代码中添加说明,请使用内容丰富的文本注释。
HTML代码:
<!-- this is a single line comment --/
<p/ some text ... </p/
<!--
this is
a multiline
comment
--/
<p/ some more text ... </p/
结果页面视图:
some text ...
some more text ...
要使代码保持不活动状态,请使用代码注释。
HTML代码:
<!-- <p/ some text ... </p/ -->
<!--
<p> some text ... </p>
<p> some text ... </p>
-->
<p> some more text ... </p>
结果页面视图:
some more text ...