You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Welcome to FFC forum. Your label tags is not correct. You need label opening and closing tags.
Example <elementName></elementName>
Following the example, create required label opening and closing tags. Remember you need two label opening and closing tags. @dezokitaka
IIn the build a registration form lesson, I am attempting to nest a textarea element to a label element. It has asked me to provide text for the label ‘provide bio’ I believe my code is correct and have checked with chat GPT - but I am receiving the error - You should give the label a text of Provide a bio: .
Can someone please help as I have been stuck on this challenge all morning.
<label>Provide a bio:
<textarea></textarea>
</label>
<label>Upload a profile picture: <input type="file" /></label>
<label>Input your age (years): <input type="number" min="13" max="120" /></label>
<label>How did you hear about us?
<select>
<option value="">(select one)</option>
<option value="1">freeCodeCamp News</option>
<option value="2">freeCodeCamp YouTube Channel</option>
<option value="3">freeCodeCamp Forum</option>
<option value="4">Other</option>
</select>
</label>
</fieldset>
type or paste code here