Adscend

Click Here



Click Here



Click Here

Sunday 8 September 2013

Comment Syntax

Comments

The comment tag is used to insert a comment in the html code. In browser, comment will not appear. It is useful to insert comment in html code when code is needed to edit later.
<!-- This is a comment -->

Example

<html>
<head>

</head>
<body>
Welcome to Aspell.
<!-- This text will not display on the browser.-->

<h2> The coolest education community site on the Internet.</h2>

</body>
</html>

Output

Welcome to Aspell.

The coolest education community site on the Internet.





No comments:

Post a Comment