2.3 KiB
2.3 KiB
id, title, challengeType, videoUrl, forumTopicId, localeTitle
id | title | challengeType | videoUrl | forumTopicId | localeTitle |
---|---|---|---|---|---|
bad87fee1348bd9aedf08833 | Fill in the Blank with Placeholder Text | 0 | https://scrimba.com/p/pVMPUv/cgR7Dc7 | 18178 | Заполните пустое поле текстом-заполнителем |
Description
lorem ipsum text
в качестве текста-заполнителя. Текст «lorem ipsum» случайным образом взят из знаменитого отрывка Цицерона Древнего Рима. Текст "lorem ipsum" использовался в качестве текста-заполнителя наборщиками текста с 16 века, и эта традиция продолжается на веб-страницах. Однако, 5 веков - это достаточно долго. Раз уж мы создаем CatPhotoApp, давайте использовать что-то под названием kitty ipsum text
.
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.
kitty: 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
tests:
- text: Your <code>p</code> element should contain the first few words of the provided <code>kitty ipsum text</code>.
testString: assert.isTrue((/Kitty(\s)+ipsum/gi).test($("p").text()));
Challenge Seed
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>
Solution
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<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</p>