--- id: bad87fed1348bd9aedf08833 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/ckK73C9' forumTopicId: 17559 localeTitle: 删除 HTML 元素 --- ## Description
手机的屏幕空间是有限的。 让我们删除不必要的元素,开始设计我们的CatPhotoApp。
## Instructions
任务:删除h1元素以简化视图。
## Tests
```yml tests: - text: '删除h1元素。' testString: assert(!code.match(/

/gi) && !code.match(/<\/h1>/gi)); - text: '保留h2元素。' testString: assert(code.match(/

[\w\W]*<\/h2>/gi)); - text: '保留p元素。' testString: assert(code.match(/

[\w\W]*<\/p>/gi)); ```

## Challenge Seed
```html

Hello World

CatPhotoApp

在大家心目中,猫是慵懒和可爱的化身,它可以睡饱了再起来吃饭,可以逗趣小耗子,可以卖得了萌,使得了坏,这样百变的小怪兽就集结在一只宠物上,怎能不惹人怜爱。

```
## Solution