xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage!</h1>
<!-- This is a comment -->
<p>This paragraph will be displayed on the webpage.</p>
<!--
This is a
multi-line comment
-->
<p>Here's another paragraph.</p>
</body>
</html>
xxxxxxxxxx
<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>
xxxxxxxxxx
<!-- This is an HTML comment -->
<!-- You can add comments anywhere in your HTML code for documentation or to temporarily disable a section of code -->
<!DOCTYPE html>
<html>
<head>
<title>HTML Comments</title>
</head>
<body>
<!-- This is a comment in the body section -->
<h1>Welcome to my website</h1>
<!--
<p>This paragraph is commented out</p>
<p>It won't be displayed in the browser</p>
-->
<p>This is a regular paragraph.</p>
<!--
<p>You can comment out multiple lines too.</p>
<p>These lines won't be rendered.</p>
-->
</body>
</html>
xxxxxxxxxx
<h1> This is line runs normally </h1>
<!-- This line is a comment, it doesn't run -->