Learn HTML Forms by Building a Registration Form - Step 10

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- 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>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color:#1b1b32;
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 OPR/97.0.0.0

Challenge: Learn HTML Forms by Building a Registration Form - Step 10

Link to the challenge:

Read the directions carefully. You are still missing the style for color it tells you to add

1 Like

i don’t understand the question very well please help me with it sir

You need to change two CSS properties in this step and you changed only one.

  • change background-color to #1b1b32 :white_check_mark:

  • change the color to #f5f6f7

1 Like

that how i write it,please explain more

Just how you added the property background-color: #1b1b32; you need to write the property color: #f5f6f7;.

1 Like

i have done that but i still don know what the problem is.

1 Like

Here is how it should look like:

If the test doesn’t pass it is possible that you need to reset the lesson.
You can do it by clicking the button that looks like the following image
Screenshot 2023-04-01 150629

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.