Where to put around other html element or not?
Option1- put around input element :
<label>Url:
<input type="text" size="350"/>
</label>
Option2:
<label>Url:</label>
<input type="text" size="350"/>
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The second is definitely better, it allows you to style separately.
You can also use the “for” attribute to bind it to an input field:
http://www.w3schools.com/tags/att_label_for.asp