2021-10-14 23:33:13 +01:00
|
|
|
---
|
|
|
|
id: 60f030d388cb74067cf291c3
|
2021-10-21 10:07:52 -07:00
|
|
|
title: Step 6
|
2021-10-14 23:33:13 +01:00
|
|
|
challengeType: 0
|
2021-10-21 10:07:52 -07:00
|
|
|
dashedName: step-6
|
2021-10-14 23:33:13 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# --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>
|
2022-03-14 15:54:43 +00:00
|
|
|
<title>Registration Form</title>
|
2021-10-14 23:33:13 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="styles.css" />
|
|
|
|
</head>
|
|
|
|
--fcc-editable-region--
|
|
|
|
<body>
|
|
|
|
<h1>Registration Form</h1>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
--fcc-editable-region--
|
|
|
|
</html>
|
|
|
|
```
|