commenti in HTML code example
Example 1: commenting in html
<!-- a comment in html -->
Example 2: comment in html
<!-- this will be ignored -->
Example 3: how to comment in html
<!-- This is HTML -->
/* This is CSS */
// This is CSS to
Example 4: comment text in html
<div>
<p>This text is visible. Check the source code for multi-line comment.</p>
<!--
Hello, world! I am a comment and I am
displayed in multiple lines!
-->
</div>