In this article we will learn about some of the frequently asked HTML programming questions in technical like “commenting in html” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “commenting in html” Code Answer’s.
commenting in html
xxxxxxxxxx
1
<!-- a comment in html -->
html comment
xxxxxxxxxx
1
<!--This is a comment in html.-->
2
<!--You can put comments enywhere! It does not care if it is mid peice of
3
code in a peice of code! You must put the ending arrows in or it will
4
think everything is a comment! Note you can comment over multiple lines.
5
Use a ! at the start arrow, this may not make sence as the rest of
6
html uses tags where ! is at the ends.-->
comment in html
xxxxxxxxxx
1
<!-- this will be ignored -->
html comments
xxxxxxxxxx
1
<!-- i am a comment -->
html comment
xxxxxxxxxx
1
<!-- Write comment here -->
how to comment in html
xxxxxxxxxx
1
<!-- your comment goes here -->