Rsponsive web design beta

help anyone how can I complete html level 55

1 Like

kindly provide a link to the challenge

We would also need to see the code you have tried so far.
Please post it here in the forum.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

A post was split to a new topic: Need help with html question for beta course

A post was split to a new topic: New help with HTML questions for beta course

Hi @pravinpk2106,

I didn’t do that curriculum yet so I don’t know what they explained in the previous part. To explain quickly, you have three ways to associate an element’s input text with an element.

First, very classic:

<input type="text" id="test">My test

This looks to be what you have in the step you are.

Second, you can nest the input tag into an opening and closing label. Example:

<label for="test">
  <input type="text" id="test">My test
</label>

This is not what they are asking you, but it is a way to do.

Third:

<input type="radio" id="test"> <label for="test">My test</label>

According to what they ask you, the third way seems to be the one you should apply.

Associate the text Loving with the checkbox by only nesting the text Loving in a label element and place it to the right side of the checkbox input element.

Hi @pravinpk2106 !

Welcome to the forum!

When asking for help on the forum, it is always best to include all of the information like the challenge link and your code.
It is also good to include a sentence or two detailing what you don’t understand about the problem.
That way we will have all of the information to help you.

@LucLH I was able to move your post back here.
Sorry for the mixup earlier.

Hi @jwilkins.oboe,

No need to be sorry, it happens. Thanks to move back my post, I was going to answer you and put my post back to the original topic. :wink:

1 Like

thanks @LucLH for the help

You’re welcome @pravinpk2106, good luck for the next of the curriculum!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.