Build a Hotel Feedback Form - Step 12

Tell us what’s happening:

The challenge reports that the name input does not have a size attribute with a value of “20”, even though the attribute is present in the code. The input element includes size=“20” and is correctly associated with its label, but the automated test continues to fail.

Your code so far

<form method="POST" action="https://hotel-feedback.freecodecamp.org">
  <fieldset>
    <legend>Personal Information</legend>

    <label for="full-name">
      Name (required):
      <input
        type="text"
        id="full-name"
        name="name"
        size="20"
        placeholder="e.g., John Doe"
        required
      />
    </label>


<!-- User Editable Region -->

    <label for="email">
      Email address (required):
      <input
        type="email"
        id="email"
        name="email"
        size="20"
        placeholder="example@email.com"
        required
      />
    </label>

    <button type="submit">Submit</button>
  </fieldset>
</form>


<!-- 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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Hotel Feedback Form - Step 12

reset the step, you changed many other things and the tests now fail