Step 32 What am I doing wrong with my code? It doesn’t pass
Add another label after the first, with the text Input your age (years): . Then, nest an input with the type of number.
Next, add a min attribute to the input with a value of 13 because users under the age of 13 should not register. Also, users probably will not be over the age of 120; add a max attribute with a value of 120.
Now, if someone tries to submit the form with values outside of the range, a warning will appear, and the form will not submit. Give it a try.
Post the entire html and css code here. Use the </> button to format code properly.
Describe what you have already tried and what you don’t understand specifically.
Put a blank space after the text (before the closing </label> tag). Also, delete ‘name’ and ‘id’ attributes. They are not required according to the instruction.