Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-001.md
Oliver Eyton-Williams ee1e8abd87 feat(curriculum): restore seed + solution to Chinese (#40683)
* 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>
2021-01-12 19:31:00 -07:00

60 lines
1.2 KiB
Markdown

---
id: 5dc174fcf86c76b9248c6eb2
title: Part 1
challengeType: 0
dashedName: part-1
---
# --description--
HTML elements have opening tags like `<h1>` and closing tags like `</h1>`.
Find the `h1` element and change the text between its opening and closing tags to say `CatPhotoApp`.
# --hints--
The text `CatPhotoApp` should be present in the code. You may want to check your spelling.
```js
assert(code.match(/catphotoapp/i));
```
Your `h1` element should have an opening tag. Opening tags have this syntax: `<elementName>`.
```js
assert(document.querySelector('h1'));
```
Your `h1` element should have a closing tag. Closing tags have a `/` just after the `<` character.
```js
assert(code.match(/<\/h1\>/));
```
You have more than one `h1` element. Remove the extra `h1` element.
```js
assert(document.querySelectorAll('h1').length === 1);
```
Your `h1` element's text should be `CatPhotoApp`. You have either omitted the text, have a typo, or it is not between the `h1` element's opening and closing tags.
```js
assert(document.querySelector('h1').innerText.toLowerCase() === 'catphotoapp');
```
# --seed--
## --seed-contents--
```html
<html>
<body>
--fcc-editable-region--
<h1>Hello World</h1>
--fcc-editable-region--
</body>
</html>
```