EN
HTML - comment tag example
3
points
In this short article we would like to show you how to comment HTML code.
Quick solution:
<!-- Comment body -->
Below example shows various uses of comments, like single-line comments, multi-line comments or how to comment a block of code.
Practical example:
// ONLINE-RUNNER:browser;
<html>
<body>
<!-- This is a single-line comment -->
<p>Only this paragraph will be displayed </p>
<!--
This is
a multi-line
comment.
-->
<!--
<p>You can also comment a block of code</p>
-->
</body>
</html>