Teg komen HTML | Contoh komen HTML | Penjana kod komen HTML
<!-- This is an HTML comment --/
Komen pembatas terbuka:
<!--
Komen pembatas dekat:
--/
Gunakan komen teks bermaklumat semasa anda ingin menambahkan penjelasan pada kod tersebut.
Kod HTML:
<!-- this is a single line comment --/
	<p/ some text ... </p/
	<!--
	    this is
	    a multiline
	    comment
	--/
	<p/ some more text ... </p/
Paparan halaman hasil:
some text ...
	some more text ...
Gunakan komen kod semasa anda ingin memastikan kod tersebut tidak aktif.
Kod HTML:
<!-- <p/ some text ... </p/ -->
	<!--
	<p> some text ... </p>
	<p> some text ... </p>
	-->
	<p> some more text ... </p>
Paparan halaman hasil:
some more text ...
Advertising