---
id: bad87fee1348bd9aedf08833
title: Fill in the Blank with Placeholder Text
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cgR7Dc7'
forumTopicId: 18178
localeTitle: 用占位符文本填充空白
---
## Description
Web 开发者通常用lorem ipsum text来做占位符,占位符就是占着位置的一些文字,没有实际意义。
为什么叫lorem ipsum text呢?是因为lorem ipsum是古罗马西塞罗谚语的前两个单词。
## Instructions
把p元素的内容更换为:Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
## Tests
```yml
tests:
- text: 'p元素的内容必须包含Monkey code。'
testString: assert.isTrue((/Kitty(\s)+ipsum/gi).test($("p").text()));
```
## Challenge Seed
```html
Hello World
CatPhotoApp
Hello Paragraph
```
## Solution