国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML comments

What are code comments? The function of code comments is to help programmers mark the purpose of the code. If you look at the code you wrote after a while, you can quickly remember the purpose of this code. Code comments not only make it easier for programmers to recall the purpose of previous code, but also help other programmers quickly understand the functions of your program, making it easier for multiple people to collaborate on developing web page code.

Syntax:

<!--Comment text-->

Example

<!-- Write your comments here -->

Comment: There is an exclamation point in the opening tag, but There is no closing tag.

The browser will not display comments, but they can help record your HTML document.

You can use comments to place notifications and reminders in HTML:

<!DOCTYPE html>
<html>

<body>

<!--這是一段注釋。注釋不會在瀏覽器中顯示。-->

<p>這是一段普通的段落。</p>

</body>
</html>


Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HTML的代碼注釋</title> </head> <body> <!--在線咨詢 begin--> <div> <p>一站式報名咨詢、助學答疑服務,無論是報名、選課、學習、做作業(yè)、考試、寫論文,畢業(yè),這里都有專業(yè)老師為你答疑解惑!<a href="#">向報名顧問咨詢</a></p> </div> <!--<a href="#">是鏈接到本頁,因為你有的時候需要有個鏈接的樣式,但是又不希望他跳轉,就可以這樣寫--> <!--在線咨詢 end--> </body> </html>
submitReset Code