--- id: bad87fee1348bd9aedf08827 title: Create a Bulleted Unordered List challengeType: 0 videoUrl: '' localeTitle: 创建项目符号无序列表 --- ## Description
HTML具有用于创建unordered lists或项目符号样式列表的特殊元素。无序列表以开头<ul>元素开头,后跟任意数量的<li>元素。最后,无序列表以</ul>结尾例如:
<UL>
<LI>乳</ LI>
<LI>干酪</ LI>
</ UL>
会创建一个“牛奶”和“奶酪”的子弹点样式列表。
## Instructions
删除最后两个p元素,并在页面底部创建猫喜爱的三件事的无序列表。
## Tests
```yml tests: - text: 创建一个ul元素。 testString: 'assert($("ul").length > 0, "Create a ul element.");' - text: 你的ul元素中应该有三个li元素。 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 ```