Tell us what’s happening:
Step 38
Link the first label element to the select element, and give the select element a name attribute.
here is the code
<div class="question-block">
<label>Can the CSS margin property accept negative values?</label>
</div>
<div class="answer">
<label for="response">Response</label>
<select required name="response" id="response">
<option value="">Select an option</op
Your code so far
<!-- file: index.html -->
<!-- User Editable Region -->
<div class="question-block">
<label>Can the CSS margin property accept negative values?</label>
</div>
<div class="answer">
<label for="response">Response</label>
<select required name="response" id="response">
<option value="">Select an option</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</div>
<!-- User Editable Region -->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36
Challenge Information:
Learn Accessibility by Building a Quiz - Step 38