* feat(curriculum): add registration-form practice project * add parts 001-006 * add parts 007-009 * add parts 010-013 * add parts 014-024, fix 013 * add parts 025-043 * add parts 043-046 * add parts 0047-057 without tests * fix tests and adjust index.md file I do not understand * add css tests to parts 037-040 * add tests parts 040-057 * remove space around ERM * add true assertion until document iframe is fixed * add critical review suggestions Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> Co-authored-by: gikf <60067306+gikf@users.noreply.github.com> * use clear, Tom-like language for 038 Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> * change order to match author's age * apply suggestions with personal pazzaz * add that thing Nich forgets * use innerText Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com> Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> Co-authored-by: gikf <60067306+gikf@users.noreply.github.com> Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
55 lines
1.0 KiB
Markdown
55 lines
1.0 KiB
Markdown
---
|
|
id: 60f030d388cb74067cf291c3
|
|
title: Part 6
|
|
challengeType: 0
|
|
dashedName: part-6
|
|
---
|
|
|
|
# --description--
|
|
|
|
Below the heading, use the following text within a paragraph element to encourage users to register:
|
|
|
|
```md
|
|
Please fill out this form with the required information
|
|
```
|
|
|
|
# --hints--
|
|
|
|
You should add a `p` element within the `body`.
|
|
|
|
```js
|
|
assert.exists(document.querySelector('body > p'));
|
|
```
|
|
|
|
You should add the `p` element below the `h1`.
|
|
|
|
```js
|
|
assert.exists(document.querySelector('h1 + p'));
|
|
```
|
|
|
|
You should give the `p` element a text of `Please fill out this form with the required information`.
|
|
|
|
```js
|
|
assert.equal(document.querySelector('p')?.innerText, 'Please fill out this form with the required information');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>freeCodeCamp Registration Form Project</title>
|
|
<link rel="stylesheet" type="text/css" href="styles.css" />
|
|
</head>
|
|
--fcc-editable-region--
|
|
<body>
|
|
<h1>Registration Form</h1>
|
|
|
|
</body>
|
|
--fcc-editable-region--
|
|
</html>
|
|
```
|