Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

I can’t pass the ninth step, Can you help me?????、

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Job Application Form</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
  <h1>Job Application Form</h1>
  <form>
   <label for="name">Full Name:</label>
   <input type="text" id="name" name="name">
   <label for="email">Email:</label>
   <input type="email" id="email" name="email">
   <label for="position">Position:</label>
   <select id="position" name="position"><option>Select a position</option><option>Developer</option><option>Designer</option><option>Manager</option>></select>
   <fieldset class="radio-group"><legend for="availability">Availability:</legend><input type="radio" name="availability" id=availability""><label for="availability">Full-time</label><input type="radio" name="availability" id="availability"><label for="availability">Part-time</label></fieldset>
   <label for="message">Why do want this job?</label>
   <textarea id="message" ></textarea>  
   <button type="submit">Submit Application</button>
  
  
  </form>
</div>
</body>
</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Build a Job Application Form - Build a Job Application Form
https://www.freecodecamp.org/learn/full-stack-developer/lab-job-application-form/lab-job-application-form

check your id attribute.

There’s an extra > after </option>.

<legend> does not support a for attribute.

1 Like

Thank you very much!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.