Continue
Using Comment Tag
There are few browsers that support <comment> tag to comment a part of HTML code.
Example
<!DOCTYPE html>
<html>
<head>
<title>Using Comment Tag</title>
</head>
<body>
<p>This is <comment>not</comment> Internet Explorer.</p>
</body>
</html>
If you are using IE, then it will produce following result:
This is Internet Explorer.
But if you are not using IE, then it will produce following result:
This is Internet Explorer.
Comments
Post a Comment