Files
freeCodeCamp/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f030d388cb74067cf291c3.md
Naomi Carrigan 16e7cdedb1 feat: migrate filenames to IDs (#45146)
* feat: migrate filenames to IDs

* feat: migrate balance sheet file names

* revert: no id name for cert projects

* fix: i swear i know what i'm doing
2022-03-02 09:06:00 -06:00

1.0 KiB

id, title, challengeType, dashedName
id title challengeType dashedName
60f030d388cb74067cf291c3 Step 6 0 step-6

--description--

Below the heading, use the following text within a paragraph element to encourage users to register:

Please fill out this form with the required information

--hints--

You should add a p element within the body.

assert.exists(document.querySelector('body > p'));

You should add the p element below the h1.

assert.exists(document.querySelector('h1 + p'));

You should give the p element a text of Please fill out this form with the required information.

assert.equal(document.querySelector('p')?.innerText, 'Please fill out this form with the required information');

--seed--

--seed-contents--

<!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>