Interview Question

What is the use of comments in HTML?

HTML comments help explain code but are still visible in page source.

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

HTML comments are notes inside the code that the page does not display. • They can explain a section to another developer. • They begin with `<!--` and end with `-->`. • Never place passwords or secrets in comments.

💡 Simple Example

<!-- Main navigation starts here -->

⚡ Quick Revision

HTML comments help explain code but are still visible in page source.