freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/fill-in-the-blank-with-plac...

1.0 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08833 Fill in the Blank with Placeholder Text 0

Description

undefined

Instructions

استبدال النص داخل عنصر p مع الكلمات القليلة الأولى من هذا النص ipsum كيتي: 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: ''
    testString: 'assert.isTrue((/Kitty(\s)+ipsum/gi).test($("p").text()), "Your <code>p</code> element should contain the first few words of the provided <code>kitty ipsum text</code>.");'

Challenge Seed

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>

Solution

// solution required