Getting mixed up with comment syntax?
Java and JavaScript
// This is a single line comment

/* This is a comment block
* It can span multiple lines
*/

HTML
<!-- This is an HTML comment -->
<!-- You can comment
    multiple lines -->
CSS
/* This is a comment block */
/* It can comment multiple lines */