Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

467 B

title
title
Comment out HTML

Comment out HTML


Problem Explanation

Comment syntax is the same of every other HTML element:

Example:

<!-- code -->
subElement Description
<!-- Opening tag
code Commented text
--> Closing tag

If you want to comment just some elements in the code you want to wrap them in a comment element - create an opening tag before them and a closing tag right after.

Have fun!