freeCodeCamp/curriculum/challenges/russian/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-e...

1.7 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08801 Inform with the Paragraph Element 0 Информировать элемент абзаца

Description

p элементов являются предпочтительным элементом текста абзаца на веб-сайтах. p является коротким для «абзаца». Вы можете создать элемент абзаца следующим образом: <p>I'm ap tag!</p>

Instructions

Создайте p элемент под вашим элементом h2 и дайте ему текст «Hello Paragraph».

Tests

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".");'
  - text: 'Убедитесь, что ваш элемент <code>p</code> имеет закрывающий тег.'
    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.");'

Challenge Seed

<h1>Hello World</h1>
<h2>CatPhotoApp</h2>

Solution

// solution required