Comment

Before we begin, let's quickly go over how to leave a comment.

The comment tag is used to leave comments in the source file. This is done to provide additional information for later viewing, or viewing by others.

<!-- -->

The comment syntax tells the browser to ignore anything within the comment tag so that comments are not displayed or interfere with the functioning of the code.

<!--

  This is a comment!
  The below IS NOT a comment!

-->

<b>This is NOT a comment</b>

This is NOT a comment

Next