--- id: bad87fee1348bd9aedf08801 title: Inform with the Paragraph Element challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/ceZ7DtN' forumTopicId: 18202 dashedName: inform-with-the-paragraph-element --- # --description-- `p` elements are the preferred element for paragraph text on websites. `p` is short for "paragraph". You can create a paragraph element like this: `

I'm a p tag!

` # --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 `

` and not `

`. # --hints-- Your code should have a valid `p` element. ```js assert($('p').length > 0); ``` Your `p` element should have the text `Hello Paragraph`. ```js assert.isTrue(/hello(\s)+paragraph/gi.test($('p').text())); ``` Your `p` element should have a closing tag. ```js assert( code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/

Hello World

CatPhotoApp

``` # --solutions-- ```html

Hello World

CatPhotoApp

Hello Paragraph

```