Necesito ayuda en este paso muchas gracias

Tell us what’s happening:

Step 15
input elements can have a size attribute. This attribute defines the number of characters that should be visible as the user types into the input. The value of size should be a non-negative integer greater than zero. If size is not specified, or is specified with an invalid value, the input will have the default width set by the browser.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hotel Feedback Form</title>
  </head>
  <body>
    <header>
      <h1>Hotel Feedback Form</h1>
      <p>
        Thank you for staying with us. Please provide feedback on your recent
        stay.
      </p>
    </header>
    <main>
      <form method="POST" action="https://hotel-feedback.freecodecamp.org">
        <fieldset>
          <legend>Personal Information</legend>
          <label for="full-name">Name (required):</label>

<!-- User Editable Region -->

          <input type="text" id="full-name" name="name" placeholder="Ex. John Doe" required>
          <label for="email">Email address (required):</label>
          <input
            placeholder="example@email.com"
            required
            id="email"
            type="email"
            name="email"
          />         

<!-- User Editable Region -->

        </fieldset>
      </form>
    </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Hotel Feedback Form - Step 15

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

can you repeat in your own words which elements should have a size attribute?

Proporcione las entradas de nombre y correo electrónico size atributo con un valor de “20”
Uploading: image.png…
Uploading: image.png(1)…
Uploading: image.png(2)…
Uploading: image.png(3)…
Uploading: image.png(4)…
Uploading: image.png(5)…
Uploading: image.png(6)…
Uploading: image.png(7)…
Uploading: Captura de pantalla 2025-07-07 094454.png…

en esta parte no se en donde aplicarla

Please say in your own words which elements should have a size attribute.

and which elements do have a size attribute?
does “las entradas de nombre” has a size attribute? does “las entradas de correo electrónico”?