I need help with my survey page

can someone explain how in will go about this user stories User Story #9: If I enter numbers outside the range of the number input, which are defined by the min and max attributes, I will see an HTML5 validation error.

User Story #10: For the name, email, and number input fields inside the form I can see corresponding labels that describe the purpose of each field with the following ids: id="name-label" , id="email-label" , and id="number-label" .https://codepen.io/Aqua7/pen/zYqxgMr

An input element can have many attributes, e.g. name, type, id etc.

Now there is another attribute that lets you add the min and max numbers you can input.

If you google for something like html input attributes, you will find:

I think you are able to find the corresponding attributes.

So you added this:

<input id="definitely" type="radio" name="definitely-maybe-not sure">  Definitely
...
<input id="maybe" type="radio" name="definitely-maybe-not sure">  Maybe
...
<input id="not sure" type="radio" name="definitely-maybe-not sure">  Not Sure 

Now each of them should have a corresponding id as stated in the User Story.

thank you, i have resolved it

can you tell me how i will go about this one User Story #12: Inside the form element, I can select an option from a dropdown that has a corresponding id="dropdown" .

Here’s your dropdown. What would you change to pass the user story?

<select name="role" id="mylist">
  <option value="">select current role</option>
  <option value="student">Student</option>
  <option value="Full Time Job">Full Time Job</option>
  <option value="Full Time Learner">Full Time Learner</option>
  <option value="Prefer Not To Say">Prefer Not To Say</option>
  <option value="Other">Other</option>
</select>

where should i put the id:“dropdown”

Well it currently says id="myList" but the test is looking for id="dropdown". You tell me.

1 Like

thank you very much.