dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
996 B
996 B
id, title, challengeType, videoUrl, forumTopicId
| 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
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>