Comment out HTML
Remember that in order to start a comment, you need to use <!--
and to end a comment, you need to use -->
Here you'll need to end the comment before your h2
element begins.
Comment out your h1
element and your p
element, but not your h2
element.
Tests
- Waiting: 1. Your
h1
element should be commented out so that it is not visible on the page. - Waiting: 2. Your
h2
element should not be commented out so that it is visible on the page. - Waiting: 3. Your
p
element should be commented out so that it is not visible on the page. - Waiting: 4. Each of your comments should be closed with
-->
. - Waiting: 5. You should not change the order of the
h1
,h2
, orp
elements in the code.
/** * Your test output will go here */