Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

ความคิดเห็น HTML


ความคิดเห็น HTML อยู่ระหว่างแท็ก ดังนั้น เนื้อหาใดๆ ที่ใส่แท็ก ด้วยจะถือเป็นความคิดเห็นและเบราว์เซอร์จะไม่สนใจเนื้อหาทั้งหมด

ความคิดเห็นบรรทัดเดียวใน HTML

ตัวอย่าง

ให้เราดูตัวอย่างความคิดเห็นบรรทัดเดียวใน HTML -

<!DOCTYPE html>
<html>
<head> <!-- Document Header Starts -->
<title>This is document title</title>
</head> <!-- Document Header Ends -->
<body>
<p>Document content goes here.....</p>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ ข้อความในความคิดเห็นจะไม่ถูกพิมพ์ -

ความคิดเห็น HTML

ความคิดเห็นหลายบรรทัดใน HTML

ตัวอย่าง

นอกจากนี้เรายังสามารถตั้งค่าความคิดเห็นหลายบรรทัดใน HTML เรามาดูตัวอย่างกัน −

<!DOCTYPE html>
<html>
<head> <!-- Document Header Starts -->
<title>This is document title</title>
</head> <!-- Document Header Ends -->
<body>
<h2>Heading Two</h2>
<!--
This is a multiline comment and it can
span through as many as lines you like.
-->
<p>Document content goes here.....</p>
<p>We have set comments in the document as well, but it won't get displayed.</p>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ ข้อความในความคิดเห็นแบบหลายบรรทัดจะไม่ปรากฏ -

ความคิดเห็น HTML