Comment
In HTML, comments
are used to add notes or explanations within the code that do not appear on the actual webpage.
These comments help document changes, clarify complex sections, and provide additional context about the code structure.
The CodeFriends web coding practice environment utilizes comments in key parts of HTML code to help learners understand the code more easily.
How to use comments?
HTML comments start with <!--
and end with -->
.
All content wrapped in comments will not be visible on the web page.
<!-- This is a comment. It will not be displayed on the web page --> <p>This sentence will be displayed on the web page.</p>
When to use comments?
Comments are mainly used in the following situations.
Code Explanation
You can add explanations for complex code or parts that might be modified later.
Disabling Code
You can wrap certain parts of the code in comments if you want to temporarily disable them. The commented-out code will not be displayed on the web page.
<!-- Temporarily disable the image below. <img src="example.jpg" alt="Sample Image"> -->
Section Separation
You can also use comments to separate different sections of the web page.
For instance, you can separate the following sections of a website with comments.
-
Header
: The upper part of the web page containing the logo, primary navigation, search bar, etc. -
Main
: The core content of the website -
Footer
: The lower part of the web page containing site information (social media links, copyright, etc.)
<!-- Header Start --> <header>...</header> <!-- Header End --> <!-- Main Start --> <main>...</main> <!-- Main End --> <!-- Footer Start --> <footer>...</footer> <!-- Footer End -->
Using HTML comments effectively enhances code readability, simplifies debugging, and improves collaboration among developers.
Practice
Follow the parts marked with asterisks in the code and type them in.
Creating HTML Comments
Write the HTML code to turn the following content into a comment.
Hint: HTML comments start with <!--
and end with -->
.
Main content
Lecture
AI Tutor
Design
Upload
Notes
Favorites
Help