通过编写注册表单学习 HTML 表单 - 步骤 16

告诉我们发生了什么:
应该将第一个 input 添加在 label 文字 Enter Your First Name: 后面,并在冒号后面加一个空格。

你目前的代码
Enter Your First Name :
Enter Your Last Name:
Enter Your Email:
Create a New Password:

<!-- file: index.html -->
<!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'>
      <fieldset>
        <label>Enter Your First Name :<input type="text" /></label>
        <label>Enter Your Last Name: <input type="text" /></label>
        <label>Enter Your Email: <input type="text" /></label>
        <label>Create a New Password: <input type="text" /></label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.47

挑战: 通过编写注册表单学习 HTML 表单 - 步骤 16

挑战的链接:

这里应该是:

<label>Enter Your First Name: <input/></label>
<label>Enter Your Last Name: <input/></label>
<label>Enter Your Email: <input/></label>
<label>Create a New Password: <input/></label>

按照题意,在文本冒号后面应该有一个空格,Enter Your First Name: <input/>

1 Like