--- id: bad87fee1348bd9aedf08801 title: Inform with the Paragraph Element challengeType: 0 videoUrl: '' localeTitle: 'الإعلام بإستخدام عنصر الفقرات' --- ## الوصف
يعد العنصر p هو العنصر المفضل لنصوص الفقرات في مواقع الويب. pهي اختصار لكلمة في "paragraph" (**وتعني فقرة**). يمكنك إنشاء عنصر الفقرة كالتالي: <p>I'm a p tag!</p>
## التعليمات
قم بإنشاء عنصر p أسفل العنصر h2 ، واكتب به هذا النص "Hello Paragraph".
## الاختبارات
```yml tests: - text: انشئ العنصر p. testString: 'assert(($("p").length > 0), "Create an h2 element.");' - text: يجب أن يحتوي العنصر p على النص التالي "Hello Paragraph". testString: 'assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text()), "Your p element should have the text "Hello Paragraph".");' - text: تأكد من أن العنصر p لديه وسم إغلاق. testString: 'assert(code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/

p element has a closing tag.");' ```

## Challenge Seed
```html

Hello World

CatPhotoApp

```
## Solution
```js // solution required ```