Tell us what’s happening:
Label element text “Any specific concerns or topics you’d like to discuss?” isn’t being accepted by step 14. I have tried copying from the prompt and rewriting. Unsure what is preventing this code from being accepted. I have also tried html codes/entities for the apostrophe in case that was causing the error.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parent Teacher Conference Form</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<main class="container">
<h1 class="title center">Parent Teacher Conference Form</h1>
<p class="description center">Please fill out the form below to help schedule your parent-teacher conference.</p>
<form>
<fieldset>
<legend>Student Information</legend>
<label for="student-name">Full Name: </label>
<input
type="text"
name="student-name"
id="student-name"
required
placeholder="E.g., Jane Doe"
/>
<label for="grade">Student Grade: </label>
<input
type="number"
name="grade"
id="grade"
required
placeholder="E.g., 4"
/>
</fieldset>
<fieldset>
<legend>Parent/Guardian Information</legend>
<label for="parent-name">Parent/Guardian Name: </label>
<input
type="text"
name="parent-name"
id="parent-name"
required
placeholder="E.g., Nancy Doe"
/>
</fieldset>
<fieldset>
<legend>Preferred Contact Method</legend>
<label class="contact-method" for="email">Email: </label>
<input
id="email"
class="contact-method-radio-btn"
type="radio"
name="contact-method"
value="email"
checked
/>
<label class="contact-method" for="phone">Phone: </label>
<input
id="phone"
class="contact-method-radio-btn"
type="radio"
name="contact-method"
value="phone"
/>
</fieldset>
<fieldset>
<!-- User Editable Region -->
<legend>Additional Notes</legend>
<label for="notes">
Any specific concerns or topics you'd like to discuss?
</label>
<textarea
id="notes"
name="notes"
rows="4"
cols="50"
>
</textarea>
<!-- User Editable Region -->
</fieldset>
</form>
</main>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 (Edition std-2)
Challenge Information:
Design a Parent Teacher Conference Form - Step 14