<!--
and to end a comment, you need to use -->
Here you'll need to end the comment before your h2
element begins.
h1
element and your p
element, but not your h2
element.
h1
element should be commented out so that it is not visible on the page.
testString: assert(($("h1").length === 0));
- text: Your h2
element should not be commented out so that it is visible on the page.
testString: assert(($("h2").length > 0));
- text: Your p
element should be commented out so that it is not visible on the page.
testString: assert(($("p").length === 0));
- text: Each of your comments should be closed with -->
.
testString: assert(code.match(/[^fc]-->/g).length > 1);
- text: You should not change the order of the h1
h2
or p
in the code.
testString: assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="") ); ```