Build a Hotel Feedback Form - Step 15

Tell us what’s happening:

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"
            size="20"
          />         

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Hotel Feedback Form - Step 15
https://www.freecodecamp.org/learn/full-stack-developer/workshop-hotel-feedback-form/step-15

Hi Buddy, in this section you need to write your issue in your own words.

Means you need to define your problems here and tell us in your problems in your own words.

Welcome to the forum @amanwubeker

You should give the name input a size attribute with a value of "20".

I see you gave a size attribute to an input element.

Was it the one mentioned in the instructions?

Happy coding