Home HTML Comments Add Comments To Your Code
Search MS Office A-Z   |   Search Web Pages/ Design A-Z

Add Comments To Your Code

<!-- insert comment here -->

Note the opening and closing characters. There shouldn't be any space between the opening tag, the exclamation point, and the two hyphens. There's also no space between the closing two hyphens and the closing tag.

Answer the "where is it" question by noting the beginning and end of each major section of your page:

<!-- Begin navigation here -->

    code for navigation menu

<!-- End navigation -->

<!-- Begin main content section here -->

    code for main content

<!-- End main content section -->