Please help me. Where am I going wrong? I need to move forward but seem to be stuck.
Thanks.
<!DOCTYPE html>
<html lang="en">
<head>
<title>free CodeCamp Survey Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>freeCodeCamp Survey Form</h1>
<p>Thank you for taking the time to help us improve the platform</p>
<form action="https://survey-form.freecodecamp.rocks">
<fieldset>
<label for="Name">Name: <input id="Enter your name" name="Name" type="text" required /></label>
<label for="Email">Email: <input id="Email" name="Email" type="Email" required /></label>
<label for="Number">Number: <input id="Number" name="Number" type="Number" required /></label>
<label for="Age">Age (Optional): <input id="Age" name="Age" type="Number" Min="13" Max="99" /></label>
</fieldset>
<fieldset>
<label for="Select current role">Which option best describes your current role?
<select id="Select current role" name="Select current role"> <br>
<option value="">(Select current role)</option>
<option value="1">Student</option>
<option value="2">Full Time Job</option>
<option value="3">Full Time Learner</option>
<option value="4">Prefer not to say</option>
<option value="5">Other</option>
</select>
</fieldset>
<fieldset><label for="Would you recommend freeCodeCamp to a friend?">Would you recommend freeCodeCamp to a friend? <br>
<input id="Definitely" type="radio" name="recommendation" class="inline" /> Definitely</label>
<label for="Maybe"><input id="Maybe" type="radio" name="recommendation" class="inline" /> Maybe</label>
<label for="Not sure"><input id="Not sure" type="radio" name="recommendation" class="inline" /> Not sure</label></fieldset>
<fieldset>
<label for="Select an option">What is your favorite feature of freeCodeCamp? <br>
<select id="Select an option" name="Select an option">
<option value="">(Select an option)</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option></select></fieldset>
<fieldset>
<label for="What would you like to see improved?" >What would you like to see improved? (Check all that apply) <br> <input id="Front-end Projects" type="checkbox" name="improving" class="inline" /> Front-end Projects</label>
<label for="Back-end Projects"><input id="Back-end Projects" type="checkbox" name="improving" class="inline" /> Back-end Projects</label>
<label for="Data Visualization"><input id="Data Visualization" type="checkbox" name="improving" class="inline" /> Data Visualization</label>
<label for="Challenges"><input id="Challenges" type="checkbox" name="improving" class="inline" /> Challenges</label>
<label for="Open Source Community"><input id="Open Source Community" type="checkbox" name="improving" class="inline" /> Open Source Community</label>
<label for="Gitter help rooms"><input id="Gitter help rooms" type="checkbox" name="improving" class="inline" /> Gitter help rooms</label>
<label for="Videos"><input id="Videos" type="checkbox" name="improving" class="inline" /> Videos</label>
<label for="City Meetups"><input id="City Meetups" type="checkbox" name="improving" class="inline" /> City Meetups</label>
<label for="Wiki"><input id="Wiki" type="checkbox" name="improving" class="inline" /> Wiki</label>
<label for="Forum"><input id="Forum" type="checkbox" name="improving" class="inline" /> Forum</label>
<label for="Additional Courses"><input id="Additional Courses" type="checkbox" name="improving" class="inline" /> Additional Courses</label>
</fieldset>
<label for="Any comments or suggestions?">Any comments or suggestions?
<textarea id="comments" name="comments" rows="3" cols="30" placeholder="Enter your comment here..."></textarea>
</label>
</fieldset>
<input type="submit" value="Submit" />
</form>
</body>
</html>