亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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>一站式報名咨詢、助學(xué)答疑服務(wù),無論是報名、選課、學(xué)習(xí)、做作業(yè)、考試、寫論文,畢業(yè),這里都有專業(yè)老師為你答疑解惑!<a href="#">向報名顧問咨詢</a></p> </div> <!--<a href="#">是鏈接到本頁,因?yàn)槟阌械臅r候需要有個鏈接的樣式,但是又不希望他跳轉(zhuǎn),就可以這樣寫--> <!--在線咨詢 end--> </body> </html>
submitReset Code