2018-10-10 18:03:03 -04:00
---
id: bad87fee1348bd9aedf08801
title: Inform with the Paragraph Element
challengeType: 0
videoUrl: ''
2019-04-25 08:46:16 +02:00
localeTitle: Передайте информацию с помощью элемента "параграф"
2018-10-10 18:03:03 -04:00
---
2019-04-25 08:46:16 +02:00
## Описание
<section id="description"> Для создания текста параграфа веб-сайта лучше использовать элемент <code>p</code>. <code>p</code> - это сокращение от слова «paragraph» (параграф). Вы можете создать параграф с этим элементом следующим образом: <code><p>I' ;m a p tag!</p></code> </section>
2018-10-10 18:03:03 -04:00
2019-04-25 08:46:16 +02:00
## Инструкции
<section id="instructions"> Создайте <code>p</code> элемент под вашим элементом <code>h2</code> с текстом «Hello Paragraph». </section>
2018-10-10 18:03:03 -04:00
2019-04-25 08:46:16 +02:00
## Тесты
2018-10-10 18:03:03 -04:00
<section id='tests'>
```yml
tests:
- text: Создайте элемент <code>p</code> .
testString: 'assert(($("p").length > 0), "Create a <code>p</code> element.");'
- text: Ваш элемент <code>p</code> должен иметь текст «Hello Paragraph».
testString: 'assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text()), "Your <code>p</code> element should have the text "Hello Paragraph".");'
2019-04-25 08:46:16 +02:00
- text: 'Убедитесь, что ваш элемент <code>p</code> имеет конечный тег.'
2018-10-10 18:03:03 -04:00
testString: 'assert(code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/<p/g).length, "Make sure your <code>p</code> element has a closing tag.");'
```
</section>
2019-04-25 08:46:16 +02:00
## Исходной код
2018-10-10 18:03:03 -04:00
<section id='challengeSeed'>
<div id='html-seed'>
```html
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
```
</div>
</section>
2019-04-25 08:46:16 +02:00
## Решение
2018-10-10 18:03:03 -04:00
<section id='solution'>
```js
// solution required
```
</section>