click below
click below
Normal Size Small Size show me how
html tag description
html tags,code,description
| Question | Answer |
|---|---|
| comment | <!--This is a comment. Comments are not displayed in the browser--> <p>This is a paragraph.</p> |
| comment definition; | The comment tag is used to insert a comment in the source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit the source code at a later date. |
| comment uses | You can also store program-specific information inside comments. In this case they will not be visible for the user. |