HTML-commentaartag | HTML-commentaarvoorbeelden | HTML-commentaarcodegenerator
<!-- This is an HTML comment --/
Commentaar open scheidingsteken:
<!--
Commentaar sluiten scheidingsteken:
--/
Gebruik informatieve tekstopmerkingen als u uitleg aan de code wilt toevoegen.
De HTML-code:
<!-- this is a single line comment --/
<p/ some text ... </p/
<!--
this is
a multiline
comment
--/
<p/ some more text ... </p/
De resultatenpaginaweergave:
some text ...
some more text ...
Gebruik codecommentaar als u de code inactief wilt houden.
De HTML-code:
<!-- <p/ some text ... </p/ -->
<!--
<p> some text ... </p>
<p> some text ... </p>
-->
<p> some more text ... </p>
De resultatenpaginaweergave:
some more text ...
Advertising