Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

I can’t find out where is the problem. pls help me take a look
7. Inside .radio-group you should have a group of input elements with the type radio for selecting availability options. The group name should be availability.

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 href="styles.css" rel="stylesheet">
</head>
<body>
<div  class="container">
    <form>
        <label for="name">Full name</label>
        <input type="text" id="name" placeholder="Your full name"/>
        <label for="email">Your email</label>
        <input type="email" id="email" placeholder="@email"/>
        <label for="position">Position</label>
        <select id="position" required>
            <option value="engineer">Engineer</option>
            <option value="engineer">Junior</option>
            <option value="engineer" selected>Senior</option>
            <option value="engineer">Manager</option></seelect>
        <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>
         <input type="radio" id="contract" name="availability" value="contract">
         <label for="contract">Contract</label>
            </fieldset>
<textarea id="message" placeholder="Enter your message here" required></textarea>
<button type="submit">Submit</button>
    </form>
</div>
</body>
</html>
/* file: styles.css */

body{
  font-family: arial, sans-serif;
  padding: 20px;
}
.container{
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

input:invalid, select:invalid, textarea:invalid{
  border-color: red;
}

input, textarea, select{
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid white;
  border-radius: 4px;
  box-sizing: border-box;
}

input:valid, select:valid, textarea:valid{
  border-color: green;
}

input:focus, textarea:focus{
  border-color: violet;
}

.radio-group{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.radio-group input[type="radio"]{
    margin-right: 10px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    outline: none;
    transition: border-color 0.2s;
  }
.radio-group input[type="radio"]:checked{
  border-color: green;
  background-color: green;
  box-shadow: inset 0 0 0 4px white; 
}
input[type="radio"]:checked + label {
  color: blue; 
}

.radio-group label{
  font-weight: normal;
  cursor: pointer;
  margin: 0;
}

label{
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}


input:nth-child(1){
  border-radius: 5px;
}
input:first-of-type{
  color: blue;
}
button{
  background-color: green;
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 20px;
  border: 0px solid white;
  border-radius: 4px;
  color: white;
}

button:hover{
  background-color: orangered;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.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

  • there is a typo in your “select” closing tag

happy coding :slight_smile:

1 Like

very thanks your help bro!

It work.

1 Like