Learn HTML Forms by Building a Registration Form - Step 9

Hello all, having a slight issue … Cannot add background-color element to my css(does not recognise the code and not highlighted red), have tried on different browsers as the camp program has issues using Mac sometimes on previous steps . any suggestions much appreciated.
thanks.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <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 */
body {
width: 100%;
height: 100vh;
margin: auto;
color: #f5f6f7
background-color:  

}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15

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

Link to the challenge:

You forgot your semicolon after your color.

that fixed it thank you

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