Tell us what’s happening:
I’m having trouble understanding the issue. I’ve connected the index file to the style file, but nothing I write is showing up.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Job Application Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form>
<input type="text" id="name" name="name" placeholder="Full Name" required>
<input type="email" id="email" name="email" placeholder="Email Address" required>
<select id="position" name="position" required>
<option value="">Select Position</option>
<option value="frontend">Frontend Developer</option>
<option value="backend">Backend Developer</option>
<option value="designer">UI/UX Designer</option>
</select>
<fieldset class="radio-group">
<legend>Availability</legend>
<label>
<input type="radio" name="availability" value="full-time" required>
Full-Time
</label>
<label>
<input type="radio" name="availability" value="part-time">
Part-Time
</label>
</fieldset>
<textarea id="message" name="message" placeholder="Your message here..." required></textarea>
<button type="submit">Submit Application</button>
</form>
</div>
</body>
</html>
/* file: styles.css */
.container{
padding: 20px;
}
input,
select,
textarea{
padding: 10px;
border: 2px solid #ccc
}
form{
display: flex;
flex-direction: column;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36
Challenge Information:
Build a Job Application Form - Build a Job Application Form