Comment Tag in HTML 5
We can do any code comment in HTML like below :-
<!-- Some Text -->
Example
<!Doctype Html>
<html>
<head>
<title>Comment Tag</title>
</head>
<body>
<p>This is a first paragraph.</p>
<!-- <p>This is a second paragraph.</p> -->
<p>This is a third paragraph.</p>
</body>
</html>
Output
This is a first paragraph.
This is a third paragraph.
Post Your Comment