Tell us what’s happening:
what’s wrong with this code I have seen all the answers still this isn’t working
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="e.g., John Doe" required>
<label for="email">Email address (required):</label>
<input
placeholder="example@email.com"
id="email"
type="email"
name="email"
size="20"
required
/>
<!-- User Editable Region -->
</fieldset>
</form>
</main>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15
Challenge Information:
Build a Hotel Feedback Form - Step 12