Menu
HTML Fundamentals

HTML Comments

Notes ignored by the browser but visible in the source.

1Adding Comments

Comments are wrapped in <!-- ... -->. They never render but they are visible to anyone viewing source — never put secrets there.

Example Code
<!-- This is a single-line comment -->
<p>Visible</p>
<!--
  Multi-line
  comment block
-->

Finished reading?

Mark this topic as complete to track progress.