--- id: bad87fee1348bd9aedf08827 title: Create a Bulleted Unordered List challengeType: 0 videoUrl: '' localeTitle: قم بإنشاء قائمة غير مرتبة بالعدادات --- ## Description
يحتوي HTML على عنصر خاص لإنشاء unordered lists أو قوائم أنماط النقطة. تبدأ القوائم غير مرتبة باستخدام عنصر <ul> الافتتاحي ، متبوعًا بأي عدد من عناصر <li> . وأخيرًا ، تغلق القوائم غير المرتبة بـ </ul> على سبيل المثال:
<UL>
<li> والحليب </ لى>
<li> والجبن </ لى>
</ UL>
إنشاء قائمة نمط نقطي من "الحليب" و "الجبن".
## Instructions
أزل آخر عنصرين من p وأنشئ قائمة غير مرتبة من ثلاثة أشياء تحبها القطط في أسفل الصفحة.
## Tests
```yml tests: - text: إنشاء عنصر ul . testString: 'assert($("ul").length > 0, "Create a ul element.");' - text: يجب أن يكون لديك ثلاثة عناصر li داخل عنصر ul الخاص بك. testString: 'assert($("ul li").length > 2, "You should have three li elements within your ul element.");' - text: تأكد من أن عنصر ul لديه علامة إغلاق. testString: 'assert(code.match(/<\/ul>/gi) && code.match(/
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

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