* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
63 lines
1.2 KiB
Markdown
63 lines
1.2 KiB
Markdown
---
|
|
id: bad87fee1348bd9aedf08801
|
|
title: Inform with the Paragraph Element
|
|
challengeType: 0
|
|
videoUrl: 'https://scrimba.com/p/pVMPUv/ceZ7DtN'
|
|
forumTopicId: 18202
|
|
dashedName: inform-with-the-paragraph-element
|
|
---
|
|
|
|
# --description--
|
|
|
|
`p` elements are the preferred element for paragraph text on websites. `p` is short for "paragraph".
|
|
|
|
You can create a paragraph element like this:
|
|
|
|
`<p>I'm a p tag!</p>`
|
|
|
|
# --instructions--
|
|
|
|
Create a `p` element below your `h2` element, and give it the text "Hello Paragraph".
|
|
|
|
**Note:** As a convention, all HTML tags are written in lowercase, for example `<p></p>` and not `<P></P>`.
|
|
|
|
# --hints--
|
|
|
|
Your code should have a valid `p` element.
|
|
|
|
```js
|
|
assert($('p').length > 0);
|
|
```
|
|
|
|
Your `p` element should have the text `Hello Paragraph`.
|
|
|
|
```js
|
|
assert.isTrue(/hello(\s)+paragraph/gi.test($('p').text()));
|
|
```
|
|
|
|
Your `p` element should have a closing tag.
|
|
|
|
```js
|
|
assert(
|
|
code.match(/<\/p>/g) &&
|
|
code.match(/<\/p>/g).length === code.match(/<p/g).length
|
|
);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<h1>Hello World</h1>
|
|
<h2>CatPhotoApp</h2>
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```html
|
|
<h1>Hello World</h1>
|
|
<h2>CatPhotoApp</h2>
|
|
<p>Hello Paragraph</p>
|
|
```
|