Rahmad
August 21, 2022, 11:01am
1
Step 31
Nest the select
element (with its option
elements) within a label
element with the text How did you hear about us?
. The text should come before the select
element.
<fieldset>
<label>Upload a profile picture: <input type="file" /></label>
<label>Input your age (years): <input type="number" min="13" max="120" />
How did your hear about us?<select></select></label>
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
</fieldset>
Helloo
Please provide link to the task.
You were not supposed to change this part.
You need to nest in label this chunk:
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
Rahmad
August 21, 2022, 11:33am
5
You mean like this?
<select>
<label>How did you hear about us?</label>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
no
the whole select
element should be inside the label
Rahmad
August 21, 2022, 11:36am
7
Finally
<label>How did you hear about us?<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select></label>
Rahmad
August 21, 2022, 11:36am
8
Thanks mate !!!
Are you a programmer?
I am learning just like you are, I just started a bit earlier I guess.
Rahmad
August 21, 2022, 11:49am
10
oh that’s great, I’m just starting learning too…
can we just exchange our contact each other…
just send me your contact to my email :
So, we can share our learning journey together
Don’t share email here.
It’s scrapable by bots.
It may lead to your email will be spammed quite a bit.
Rahmad
August 21, 2022, 11:53am
12
so, how can we contact to each other?
i just need some friend to grow together and be expert in programming
Can use personal messages here on this forum if you wish.
But, in general, if you have some questions about code, just create a thread here. Somebody will help, not just me.
I am open to communication, but be aware:
I am learning like a bunch of stuff simultaneously, so I may be not available often
Rahmad
August 21, 2022, 11:59am
14
oh oke that’s fine,
so thanks again…
system
Closed
February 19, 2023, 11:59pm
15
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.