Tell us what’s happening:
Steps 11-19 will not pass no matter what i tried. I even looked on google it didnt give a good answer either
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="style.css">
</head>
<body>
<div class="container">
<form id="job-app">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<label for="position">Job Position:</label>
<select id="position" name="position" required>
<option value="">--Please choose an option--</option>
<option value="developer">Developer</option>
<option value="designer">Designer</option>
<option value="manager">Manager</option>
</select>
<fieldset class="radio-group">
<input type="radio" id="full-time" name="availability" value="full-time">
<label for="full-time">Full-Time</label>
<input type="radio" id="part-time" name="availability" value="patr-time">
<label for="part-time">Part-Time</label>
</fieldset>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Submit Applicantion</button>
</form>
</div>
</body>
</html>
/* file: styles.css */
input:focus,
textarea:focus {
border-color: #3498db;
}
input:invalid,
select:invalid,
textarea:invalid {
border-color: red;
}
input:valid,
select:valid,
textarea:valid {
border-color: green;
}
button:hover {
background-color: #2c3e50;
}
.radio-group input[type="radio"]:checked {
border-color: #2c3e50;
background-color: #ecf0f1;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
input:focus, textarea:focus {
border-color: #3498db;
}
input:invalid, select:invalid, textarea:invalid {
border-color: red;
}
input:valid, select:valid, textarea:valid {
border-color: green;
}
button:hover {
background-color: #2c3e50;
}
.radio-group input[type="radio"]:checked {
border-color: #2c3e50;
background-color: #ecf0f1;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
input[type="radio"]:checked + label {
color: #3498db;
}
input:first-of-type {
border-radius: 10px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a Job Application Form - Build a Job Application Form