freeCodeCamp/curriculum/__fixtures__/challenge-html-comments.eng...

996 B

id title challengeType videoUrl forumTopicId
bd7123c8c441eddfaeb5bdef Say Hello to HTML Elements 0 https://scrimba.com/p/pVMPUv/cE8Gpt2 18276

Description

  // change code below this line

Instructions

To pass the test on this challenge, change your h1 element's text to say "Hello World".

Tests

tests:
  - text: Your <code>h1</code> element should have the text "Hello World".
    testString: assert.isTrue((/hello(\s)+world/gi).test($('h1').text()));

Challenge Seed

<h1>Hello</h1>
<!-- Add your code below this line -->
<!-- Add your code above this line -->
<style>
  /* change code below this line */
  /* change code above this line */
</style>

Solution

<h1>Hello World</h1>