Home >> HTML 5 >> Comment Tag in HTML 5

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

Next Questions
DOCTYPE Tag
a Tag
abbr Tag
acronym Tag
address Tag
applet Tag
area Tag
article Tag
aside Tag
audio Tag
b Tag
base Tag
basefont Tag
bdo Tag
bdi Tag
bgsound Tag
big Tag
blockquote Tag
body Tag
br Tag
button Tag
canvas Tag
caption Tag
center Tag
cite Tag

Copyright ©2022 coderraj.com. All Rights Reserved.