How do I comment my HTML, CSS, JavaScript, and PHP code? Updated on August 16, 2021 by InMotion Hosting Contributor 1 Minutes, 58 Seconds to Read When you are designing your website, there are many instances that require you to comment out code in your website. Commenting code is good for diagnosing website problems, hiding code instead of deleting the code, placing notes in a file to explain what was done, and many more reasons. This article will explain the basics of commenting code in your website files. Table of Contents HTML Comments HTML comment Example of an HTML comment CSS, JavaScript, and PHP Comments Single Line comment Multiple Line comment Example of PHP comment HTML Comments HTML comments are specifically designed to comment out code when you are in an HTML coded document. Below is the syntax for HTML comments. HTML comment <!-- <code to be commented out> --> Example of an HTML comment An Example of a usage of this is shown in the following code. <html><head> <title>Document</title> </head><body> <!-- This is a comment --> <p>A paragraph in your site</p> <!-- This is code commented out <h1>Commented Title</h1> <p>A paragraph that is commented out.</p> --> </body></html> CSS, JavaScript, and PHP Comments CSS comments are done in the CSS .css stylesheet or in the Internal Style sheet. JavaScript comments can be placed inside HTML documents or in a .js file where JavaScript is ran. PHP code will be in .php files between <?php and ?> code. The following code shows the syntax for commenting out CSS, JavaScript, and PHP code. Single Line comment // <code to be commented out> Multiple Line comment /* <code to be commented out> <Other code to be commented out> <Some more code to be commented out> */ Example of PHP comment An Example of a usage of this is shown in the following code. Below is showing PHP code; however, you use the same process to comment JavaScript and CSS. <html><body> <?php // This is a comment on one line echo '<p>HTML code echoed by PHP.</p>'; /* This is code commented out echo '<h1>An HTML Title from PHP</h1>'; echo '<p>HTML code echoed by PHP.</p>'; */ ?> </body></html> Share this Article Related Articles Intro to Migrating your WordPress Site Data Migrating your WordPress Database Migrating WordPress Files Configuring WordPress After a Migration Testing your WordPress website after Migration How to Move WordPress from a Subfolder to the Root Directory What to expect during a mass server migration Move Your WordPress Site to a New Server Moving Websites Built with Older Technology into WordPress How to Export Your WordPress Sites