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 ...