diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element.english.md index 870afa33b4..d6d7c2fc35 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element.english.md @@ -15,6 +15,8 @@ You can create a paragraph element like this: ## Instructions
Create a p element below your h2 element, and give it the text "Hello Paragraph". +Note: +As a convention, all HTML tags are written in lowercase, for example <p></p> and not <P></P>.
## Tests @@ -23,7 +25,7 @@ Create a p element below your h2 element, and give it ```yml tests: - text: Create a p element. - testString: assert(($("p").length > 0), 'Create a p element.'); + testString: assert(($("p").length > 0), 'Create a valid p element.'); - text: Your p element should have the text "Hello Paragraph". testString: assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text()), 'Your p element should have the text "Hello Paragraph".'); - text: Make sure your p element has a closing tag.