Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

exercise Build a job application form problem step 11 :
it does not validate my CSS code :

<!-- 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>
</head>
<body>
<div class="container">
  <form>
    <label for="name">Full Name:</label>
    <input type="text" id="name" required>
      </br>
      </br>
    <label for="email">Email Address:</label>
    <input type="email" id="email" required>
      </br>
      </br>
    <label for="position">Job Position:</label>
    <select id="position">
      <option value="dev">Developer</option>
      <option value="design">Designer</option>
    </select>
      </br>
      </br>
    <fieldset class="radio-group">
      <legend>Availability</legend>
      <input type="radio" id="full-time" name="availability" value="full-time" required>
      <label for="full-time">Full-Time</label>
      
      <input type="radio" id="part-time" name="availability" value="part-time">
      <label for="part-time">Part-Time</label>
    </fieldset>
      </br>
      </br>
    <label for="message">Message:</label>
    <textarea id="message" required></textarea>
      </br>
      </br>
    <button type="submit">Submit Form</button>
  </form>
</div>
</body>
</html>
/* file: styles.css */
input:focus, textarea:focus {
  border-color: blue;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a Job Application Form - Build a Job Application Form

1 Like

Welcome to the forum @ollealexandrerj !

Have you linked your stylesheet?

1 Like