" comment tag to represent HTML comments. This tag is used to insert comments into the source document. The comments will not be displayed in the browser. The syntax for adding comments to HTML source code is ""."/> " comment tag to represent HTML comments. This tag is used to insert comments into the source document. The comments will not be displayed in the browser. The syntax for adding comments to HTML source code is "".">
Home > Article > Web Front-end > How to represent HTML comments
In HTML, you can use the "8d0d9f613ee4a9219a4d7a4cb67e7ad3" comment tag to represent HTML comments. This tag is used to insert comments into the source document. The comments will not be displayed in the browser. The syntax for adding comments to HTML source code is "e33ac7da527136f63c016cc68b079ba1".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
HTML 8d0d9f613ee4a9219a4d7a4cb67e7ad3 Tag
This tag is used to insert comments in the source document. Comments will not be displayed in the browser. show.
Add comments to the HTML source code using the following syntax:
<!-- 在此处写注释 -->
Note: There is an exclamation mark in the opening tag, but not in the closing tag.
Example:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Comments in HTML</title> </head> <body> <!-- 这是单行HTML注释 --> <!-- 这是一个例子 HTML多行注释 --> <h1>这是标题</h1> <p>这是一个段落。</p> </body> </html>
The browser will not display comments, but it can help record your HTML document.
[Recommended tutorial: "html video tutorial"]
Conditional comments
We may Conditional comments are occasionally found in HTML:
<!--[if IE 8]> .... some HTML here .... <![endif]-->
Conditional comments define HTML tags that only Internet Explorer executes.
For more programming related knowledge, please visit: Programming Video! !
The above is the detailed content of How to represent HTML comments. For more information, please follow other related articles on the PHP Chinese website!