View Single Post
Old 07-19-2017, 11:42 PM   #2
manalisoni
Registered User
 
Join Date: Jul 2017
Posts: 258
Notice that there is an exclamation point (!) in the opening tag, but not in the closing tag. Comments are not displayed by the browser, but they can help document your HTML source code. Comments help you and others understand your code and increases code readability.

This is a valid comment goes here. Here given comment is a valid comment and will be wiped off by the browser.

<!DOCTYPE html>

<html>

<head>

<title>Valid Comment Example</title>

</head>

<body>

<!-- This is valid comment -->

<p>Document content goes here.....</p>

</body>

</html>

Thanks
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
,

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
manalisoni is offline   Reply With Quote