freeCodeCamp/curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-html-forms-by-buildin.../60f5dc35c07ac1078f140916.md

1.7 KiB

id title challengeType dashedName
60f5dc35c07ac1078f140916 步驟 14 0 step-14

--description--

label 元素中添加以下內容:

  • Enter Your First Name:
  • Enter Your Last Name:
  • Enter Your Email:
  • Create a New Password:

--hints--

第一個 label 的文本應該爲 Enter Your First Name:

assert.match(document.querySelector('label')?.innerHTML, /Enter Your First Name:/i);

第二個 label 的文本應該爲 Enter Your Last Name:

assert.match(document.querySelector('fieldset > label:nth-child(2)')?.innerHTML, /Enter Your Last Name:/i);

第三個 label 的文本應該爲 Enter Your Email:

assert.match(document.querySelector('fieldset > label:nth-child(3)')?.innerHTML, /Enter Your Email:/i);

第四個 label 的文本應該爲 Create a New Password:

assert.match(document.querySelector('fieldset > label:nth-child(4)')?.innerHTML, /Create a New Password:/i);

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form action='https://register-demo.freecodecamp.org'>
--fcc-editable-region--
      <fieldset>
        <label></label>
        <label></label>
        <label></label>
        <label></label>
      </fieldset>
--fcc-editable-region--
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}