Completely stuck on step 37 of building a quiz

<div class="question-block">
              <label for "select">Are you a frontend developer?</label>
              </div>
            <div class="answer">
              <select required id="select" name="select">
                <option value="">Select an option</option>
                <option value="yes">Yes</option>
                <option value="no">No</option>
              </select>
            </div>

Instruction: Link the first label element to the select element, and give the select element a name attribute

Hint: You should give the label element a for attribute

Can you provide a link to the challenge?

1 Like

Also, I would expect an = in between an attribute and a property.

1 Like