Crie um Formulário de Feedback de Hotel - Passo 3

Conte-nos o que está acontecendo:

<form method="POST" action="https://hotel-feedback.freecodecamp.org" o codigo diz que deve ter uma tag de abertura para form. Solicito a correção.Obrigado.

Seu código até o momento

<!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>

<!-- User Editable Region -->

<main>
<form method="POST"action="https://hotel- feedback.freecodecamp.org"
</form>
  </main> 

<!-- User Editable Region -->

    </main>
  </body>
</html>

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36

Informações do desafio:

Crie um Formulário de Feedback de Hotel - Passo 3

Hi @robertrosadelima,

Notice the change in text color in the form element’s ending tag? That’s a hint that something is wrong there.

Is the form element’s opening tag closed properly?

Edit:

How many main elements should be inside the body element?

Happy coding!