Home  >  Article  >  Web Front-end  >  What are html comments?

What are html comments?

coldplay.xixi
coldplay.xixiOriginal
2021-04-26 11:46:239870browse

The comments in

html are codes that are not executed by the program. They are used by programmers to mark the code and are helpful for later modifications and learning by others. [5e10a3b5c725e9de61d0124e688aa7da Comment tags are used in source code Insert comments into the document and the comments will not be displayed in the browser.

We often have to make some HTML comments next to some codes. This has many benefits, such as: it facilitates other programmers in the project team to understand your code, and it also facilitates your understanding and understanding of your own code in the future. Modifications, etc.

You can add your own comments to the HTML document. Comments are not displayed on the page and can be used to remind web designers to recall relevant program information. The comment line is written as follows:

<!--The following table gives us precise control of figure placement.-->

Note: There must be two hyphens after the exclamation point and two hyphens before the greater than sign. Some browsers strictly check this.

As you can see, the content commented with "9f9091322f187259b3af9befdc60c2f1" will not be displayed in the browser. The comment tag is used to insert comments in the source code, and the content of the comments will not be displayed in the browser. Commenting the key code will help you understand the source code you wrote at that time in the future.

When writing HTML code, we often need to make comments next to some key codes. This has many benefits, such as: it is easier to understand, easier to find, or easier for other programmers in the project team to understand your code. , and it will make it easier for you to modify your code in the future.

Commenting critical code is a good habit. When developing a website or functional module, code comments are particularly important. Because the code at that time was often hundreds or even thousands of lines, if you did not comment on the key code, you would often feel dizzy and even unable to understand the code you wrote at that time.

Related learning recommendations: html video tutorial

The above is the detailed content of What are html comments?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn