Learn HTML Forms by Building a Registration Form - Step 31

Tell us what’s happening:

I can’t figure out where to put the text because every time I try to put it in, it says add it to the label

I accept the terms and conditions

terms and conditions

  <input type="submit" value="Submit" />
</form>
```
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

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

Your browser information:

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

Challenge Information:

Learn HTML Forms by Building a Registration Form - Step 31

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