--- id: bad87fee1348bd9aedf08801 title: Inform with the Paragraph Element challengeType: 0 videoUrl: https://scrimba.com/p/pVMPUv/ceZ7DtN forumTopicId: 18202 localeTitle: Передайте информацию с помощью элемента "параграф" --- ## Description
Для создания текста параграфа веб-сайта лучше использовать элемент p. p - это сокращение от слова «paragraph» (параграф). Вы можете создать параграф с этим элементом следующим образом: <p>I'm a p tag!</p>
## Instructions
Создайте p элемент под вашим элементом h2 с текстом «Hello Paragraph».
## Tests
```yml tests: - text: Your code should have a valid p element. testString: assert(($("p").length > 0)); - text: Your p element should have the text "Hello Paragraph". testString: assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text())); - text: Make sure your p element has a closing tag. testString: assert(code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/

## Challenge Seed

```html

Hello World

CatPhotoApp

```
## Solution
```html

Hello World

CatPhotoApp

Hello Paragraph

```