Home > Web Front-end > HTML Tutorial > How to use the html tag

How to use the html tag

silencement
Release: 2019-05-28 11:25:13
Original
10571 people have browsed it

How to use the html <!--...--> tag

html Tag definition and usage

Comment tags are used to insert in source code Note. Comments will not be displayed in the browser.

You can use comments to explain your code, which will help you edit the code at a later time. Especially useful when you write a lot of code.

It is also a good practice to use comment tags to hide scripts that are not supported by the browser (so that the script is not displayed as plain text):

<script type="text/javascript">
<!--
function displayMsg()
{
alert("Hello World!")
}
//-->
</script>
Copy after login

Comment: two lines at the end of the comment line The slash (//) is the JavaScript comment symbol. This prevents JavaScript from executing the --> tag.

Example

HTML Note:

<!--这是一段注释。注释不会在浏览器中显示。-->

<p>这是一段普通的段落。</p>
Copy after login

Browser support

All browsers Both support comment tags

Differences between HTML 4.01 and HTML5

None.

Standard attributes

Annotation tags do not support any standard attributes.

Event Properties

Annotation tags do not support any event properties.

The above is the detailed content of How to use the html tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template